-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 850 Bytes
/
setup.py
File metadata and controls
33 lines (32 loc) · 850 Bytes
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
from setuptools import setup, find_packages
setup(
name="whynot",
version="0.12.0",
author="John Miller",
author_email="miller_john@berkeley.edu",
description="A framework for benchmarking causal inference.",
packages=find_packages(),
include_package_data=True,
install_requires=[
"autograd",
"dataclasses; python_version<'3.7'",
"gym==0.21.0",
"mesa<=0.8.7",
"numpy",
"networkx",
"pandas",
"py_mini_racer",
"pyomo",
"scipy",
"scikit-learn",
"statsmodels",
"tqdm",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX",
],
python_requires=">=3.8.10, <=3.10.11",
)