diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2014-05-17 22:35:25 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2014-05-17 23:06:21 +0200 |
commit | d0a78147aeafb5e38cebe8103fb454d8c8db3729 (patch) | |
tree | 35d7d8ac9ca5af204b86a01e911b03e14b705be1 | |
parent | e0159baf1b84a2ed4a934cfb34c288b6087debab (diff) |
Fix dateutil dependency
This also ignores downloaded .egg files.
-rw-r--r-- | .gitignore | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -4,9 +4,9 @@ __pycache__ # / +/*.egg /*.egg-info /.coverage /build /coverage /dist -/distribute-*.egg @@ -53,5 +53,5 @@ setup( 'Topic :: Software Development :: Libraries :: Python Modules', ], packages=find_packages(), - install_requires=['distribute', 'Crypto', 'dateutil'], + install_requires=['distribute', 'Crypto', 'python-dateutil'], ) |