-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
24 lines (21 loc) · 818 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
with open("README.md", "r") as readme_file:
readme = readme_file.read()
requirements = ["numpy>=1.18.1", "pandas>=1.0.3", "dtw-pytho>=1.1.6", "tfcausalimpact>=0.0.5"]
setup(
name="pycausalmatch",
version="0.0.4",
author="Rishi Jumani",
author_email="unbiased.modeler@gmail.com",
description="Causal Impact of an intervention integrated with control group selection",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/unbiasedmodeler/pycausalmatch",
packages=find_packages(),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
],
)