Skip to content

Commit

Permalink
DIST: Add setup reqs
Browse files Browse the repository at this point in the history
  • Loading branch information
wrobstory committed Aug 14, 2015
1 parent fc4a114 commit f739137
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@
except ImportError:
from distutils.core import setup

reqs = ["dask>=0.7.0",
"dill>=0.2.4",
"numpy>=1.9.2",
"pandas>=0.16.2",
"python-dateutil>=2.4.2",
"pytz>=2015.4",
"six>=1.9.0",
"toolz>=0.7.2",
"wheel>=0.24.0"]


setup(
name='malort',
version='0.0.4',
Expand All @@ -19,5 +30,6 @@
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License'],
packages=['malort']
packages=['malort'],
install_requires=reqs
)

0 comments on commit f739137

Please # to comment.