From ed63d7c9cc2d17d6f89d336632416e1e1bfcf84e Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 16 Dec 2016 13:44:00 -0500 Subject: [PATCH] add deps to setup.py --- setup.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 3153274..61382ef 100644 --- a/setup.py +++ b/setup.py @@ -7,12 +7,17 @@ import sys from setuptools import setup - if sys.argv[-1] == "publish": os.system("python setup.py sdist bdist_wheel upload") sys.exit() -required = [] +required = [ + 'humanize', + 'pytz', + 'dateparser', + 'iso8601', + 'dateutil.parser' +] setup( name='maya', @@ -22,7 +27,7 @@ setup( author='Kenneth Reitz', author_email='me@kennethreitz.com', url='https://github.com/kennethreitz/maya', - my_modules= ['maya'], + my_modules=['maya'], install_requires=required, license='MIT', classifiers=(