Skip to content

Commit

Permalink
updated repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ronikobrosly committed Apr 20, 2020
1 parent 04acbc4 commit 461e337
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions causal_curve/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

from statsmodels.genmod.generalized_linear_model import DomainWarning

from causal_curve.cdrc import CDRC as CDRC


# Suppress statsmodel warning for gamma family GLM
warnings.filterwarnings("ignore", category=DomainWarning)
Expand Down
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
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", # Replace with your own username
version="0.0.1",
name="causal-curve",
version="0.0.2",
author="Roni Kobrosly",
author_email="[email protected]",
description="A python library with tools to perform causal inference using \
Expand All @@ -20,4 +23,5 @@
"Operating System :: OS Independent",
],
python_requires='>=3.6.7',
install_requires=required
)

0 comments on commit 461e337

Please sign in to comment.