-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (41 loc) · 1.22 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
from setuptools import setup, find_packages
VERSION = "0.1.0"
TEST_REQUIRES = [
"pytest == 7.4.3",
"pytest-cov",
"pytest-xdist",
"mypy",
"black==24.2.0",
"flake8",
"isort==5.13.2",
"nbval",
"nbqa",
"autoflake",
"types-requests",
]
DEV_REQUIRES = [
"pyro-ppl==1.8.5",
"torch", "plotly.express",
"scipy",
"chirho", "graphviz", "seaborn",
]
setup(
name="cities",
version=VERSION,
description="Similarity and causal inference tools for policymakers.",
packages=find_packages(include=["cities", "cities.*"]),
author="Basis",
url="https://www.basis.ai/",
project_urls={
# "Documentation": "",
"Source": "https://github.com/BasisResearch/cities",
},
install_requires=["jupyter","pandas", "numpy", "scikit-learn", "sqlalchemy", "dill", "plotly", "matplotlib>=3.8.2",
'types-requests'],
extras_require={
"test": TEST_REQUIRES,
"dev": DEV_REQUIRES + TEST_REQUIRES
},
python_requires=">=3.10",
keywords="similarity, causal inference, policymaking, chirho",
license="Apache 2.0",)