-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
57 lines (52 loc) · 1.87 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import setup, find_packages
import urllib.request
url = "https://raw.githubusercontent.com/d2cml-ai/synthdid.py/main/Readme.md"
response = urllib.request.urlopen(url)
long_description = response.read().decode("utf-8")
setup(
dependency_links=[],
install_requires=[
"appdirs==1.4.3",
"attrs==19.1.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"black==19.3b0; python_version >= '3.6'",
"click==7.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"contourpy==1.0.7",
"cycler==0.11.0",
"fonttools==4.39.0",
"importlib-resources==5.12.0",
"kiwisolver==1.4.4",
"matplotlib==3.7.1",
"numpy==1.23.5",
"packaging==23.0",
"pandas==1.5.3",
"patsy==0.5.3",
"pillow==9.4.0",
"pipenv-setup==2.0.0",
"pipfile==0.0.2",
"pyparsing==3.0.9",
"python-dateutil==2.8.2",
"pytz==2022.7.1",
"scipy==1.10.1; python_version >= '3.10' and python_version < '3.12' and platform_system != 'Windows' or platform_machine != 'x86'",
"six==1.16.0",
"statsmodels==0.13.5",
"toml==0.10.0",
"zipp==3.15.0",
],
name="synthdid",
author="D2CML Team, Alexander Quispe, Rodrigo Grijalba, Jhon Flores, Franco Caceres",
version="0.10.1",
packages=find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
keywords="causal-inference",
url="https://github.com/d2cml-ai/synthdid.py",
license="MIT",
description="Synthdid",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering",
],
)