From 4127ecd15f0c6cd18ffdc41f4f29d55389168f6d Mon Sep 17 00:00:00 2001 From: Conor Hughes Date: Sun, 19 Oct 2014 12:48:15 -0700 Subject: [PATCH] Add prerequisites and enhanced gitignore --- .gitignore | 3 ++- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 703e159..f9fb14b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ build -*.egg-info \ No newline at end of file +*.egg-info +TAGS diff --git a/setup.py b/setup.py index ab11a2f..2803d27 100755 --- a/setup.py +++ b/setup.py @@ -50,12 +50,12 @@ def setup(args=None): author_email=author_email, zip_safe=True, #url=None, - install_requires=None, + install_requires=["python-dateutil"], long_description=long_description, license='BSD', classifiers=[ 'Development Status :: 3 - Alpha', - 'Intended Audience :: Developers', + 'Intended Audience :: Developers' ]) if __name__ == '__main__':