forked from uber/causalml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
executable file
·70 lines (64 loc) · 1.36 KB
/
pyproject.toml
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "causalml"
version = "0.14.1"
description = "Python Package for Uplift Modeling and Causal Inference with Machine Learning Algorithms"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ "name" = "Huigang Chen" },
{ "name" = "Totte Harinen" },
{ "name" = "Jeong-Yoon Lee" },
{ "name" = "Jing Pan" },
{ "name" = "Mike Yung" },
{ "name" = "Zhenyu Zhao" }
]
maintainers = [
{ name = "Jeong-Yoon Lee" }
]
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
requires-python = ">=3.7"
dependencies = [
"forestci==0.6",
"pathos==0.2.9",
"pip>=10.0",
"numpy>=1.18.5",
"scipy>=1.4.1",
"matplotlib",
"pandas>=0.24.1,<1.4.0",
"scikit-learn>=0.22.0",
"statsmodels>=0.9.0",
"Cython<=0.29.34",
"seaborn",
"xgboost",
"pydotplus",
"tqdm",
"shap",
"dill",
"lightgbm",
"pygam",
"packaging",
"torch",
"pyro-ppl",
"graphviz",
]
[project.optional-dependencies]
test = [
"pytest>=4.6",
"pytest-cov>=4.0"
]
tf = [
"tensorflow>=2.4.0"
]
[build-system]
requires = [
"setuptools>=18.0",
"wheel",
"Cython<=0.29.34",
"numpy>=1.18.5",
"scikit-learn>=0.22.0",
]
[project.urls]
homepage = "https://github.com/uber/causalml"