Skip to content

Commit

Permalink
WIP for setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ronikobrosly committed Apr 21, 2020
1 parent d06b8e8 commit a181b1e
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,9 @@
with open("README.md", "r") as fh:
long_description = fh.read()

with open('requirements.txt') as f:
required = f.read().splitlines()

setuptools.setup(
name="causal-curve",
version="0.0.3",
version="0.0.5",
author="Roni Kobrosly",
author_email="[email protected]",
description="A python library with tools to perform causal inference using \
Expand All @@ -22,6 +19,21 @@
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6.7',
install_requires=required
python_requires='>=3.6',
install_requires=[
'future',
'joblib',
'numpy',
'pandas',
'patsy',
'progressbar2',
'pygam',
'python-dateutil',
'python-utils',
'pytz',
'scikit-learn',
'scipy',
'six',
'statsmodels'
]
)

0 comments on commit a181b1e

Please sign in to comment.