From d0a78147aeafb5e38cebe8103fb454d8c8db3729 Mon Sep 17 00:00:00 2001 From: Arthur de Jong Date: Sat, 17 May 2014 22:35:25 +0200 Subject: Fix dateutil dependency This also ignores downloaded .egg files. --- .gitignore | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2dc07ab..4883d7f 100644 --- a/.gitignore +++ b/.gitignore @@ -4,9 +4,9 @@ __pycache__ # / +/*.egg /*.egg-info /.coverage /build /coverage /dist -/distribute-*.egg diff --git a/setup.py b/setup.py index e052b34..a910e23 100755 --- a/setup.py +++ b/setup.py @@ -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'], ) -- cgit v1.2.3