Skip to content

Commit

Permalink
send markdown with twine
Browse files Browse the repository at this point in the history
  • Loading branch information
edsu committed Nov 19, 2019
1 parent b9ae6c9 commit 2b6bdc5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
if sys.version_info < (3,0):
sys.exit('Sorry, diffengine runs on Python 3')


from setuptools import setup, find_packages

reqs = open("requirements.txt").read().split()

with open("README.md") as f:
long_description = f.read()

# hack until htmldiff is updated to work with python3 on pypi
htmldiff = "https://github.com/edsu/htmldiff/tarball/master#egg=htmldiff-0.2"
reqs.remove(htmldiff)
Expand All @@ -21,7 +23,9 @@
author="Ed Summers",
author_email="[email protected]",
packages=find_packages(exclude=['test_diffengine']),
description="Tweet changes to stories in RSS feeds",
description="Monitor changes to webpages in RSS feeds",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=reqs,
dependency_links=deps,
setup_data={'diffengine': ['diffengine/diff.html']},
Expand Down

0 comments on commit 2b6bdc5

Please sign in to comment.