-
Notifications
You must be signed in to change notification settings - Fork 780
/
pyproject.toml
executable file
·77 lines (71 loc) · 1.54 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
71
72
73
74
75
76
77
[project]
name = "causalml"
version = "0.15.3dev"
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, <2",
"scipy>=1.4.1",
"matplotlib",
"pandas>=0.24.1",
"scikit-learn>=0.22.0",
"statsmodels>=0.9.0",
"Cython<=0.29.34",
"seaborn",
"xgboost",
"pydotplus",
"tqdm",
"shap",
"dill",
"lightgbm",
"pygam",
"packaging",
"graphviz",
]
[project.optional-dependencies]
test = [
"pytest>=4.6",
"pytest-cov>=4.0"
]
tf = [
"tensorflow>=2.4.0"
]
torch = [
"torch",
"pyro-ppl"
]
[build-system]
requires = [
"setuptools>=18.0",
"wheel",
"Cython<=0.29.34",
"numpy>=1.18.5, <2",
"scikit-learn>=0.22.0",
]
[project.urls]
homepage = "https://github.com/uber/causalml"
[tool.cibuildwheel]
build = ["cp38-*", "cp39-*", "cp310-*", "cp311-*"]
build-verbosity = 1
# Skip 32-bit builds
skip = ["*-win32", "*-manylinux_i686", "*-musllinux*"]