-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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) | ||
|
@@ -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']}, | ||
|