-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
133 lines (126 loc) · 2.87 KB
/
Copy pathpyproject.toml
File metadata and controls
133 lines (126 loc) · 2.87 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "lale"
description = "Library for Semi-Automated Data Science"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "Apache License 2.0" }
authors = [
{ name = "Guillaume Baudart" },
{ name = "Martin Hirzel" },
{ name = "Kiran Kate" },
{ name = "Parikshit Ram" },
{ name = "Avraham Shinnar" },
]
maintainers = [{ name = "Avraham Shinnar" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dynamic = ["version"]
dependencies = [
"numpy",
"black>=22.1.0",
"setuptools>=61.0",
"hyperopt>=0.2,<0.4",
"jsonschema<=5",
"jsonsubschema>=0.0.6",
"scikit-learn>=1.0.0,<1.8.0",
"scipy",
"pandas",
"packaging",
"decorator",
"typing-extensions",
]
[project.urls]
Homepage = "https://github.com/IBM/lale"
[project.optional-dependencies]
full = [
"mystic",
"graphviz",
"xgboost<3.4.0",
"lightgbm<4.7.0",
"snapml>=1.7.0rc3,<1.18.0; python_version < '3.13'",
"liac-arff>=2.4.0",
"tensorflow>=2.4.0; python_version < '3.14'",
"numba",
"aif360>=0.5.0",
"torch>=1.0",
"BlackBoxAuditing",
"imbalanced-learn",
"cvxpy>=1.0",
"fairlearn",
"h5py",
]
dev = ["pre-commit"]
test = [
"mystic",
"joblib",
"ipython<8.8.0",
"jupyter",
"graphviz",
"sphinx>=5.0.0",
"sphinx_rtd_theme>=0.5.2",
"docutils<0.17",
"m2r2",
"sphinxcontrib.apidoc",
"sphinxcontrib-svg2pdfconverter",
"pytest",
"pyspark",
"func_timeout",
"category-encoders",
"pynisher==0.6.4",
]
fairness = [
"mystic",
"liac-arff>=2.4.0",
"aif360>=0.5.0",
"imbalanced-learn",
"BlackBoxAuditing",
]
autoai-fairness = [
"dill<=0.3.8",
"mystic<=0.3.9",
"klepto<=0.2.2",
"liac-arff>=2.4.0",
"aif360>=0.5.0",
"imbalanced-learn",
"BlackBoxAuditing",
]
tutorial = [
"ipython<8.8.0",
"jupyter",
"graphviz",
"xgboost<3.1.0",
"imbalanced-learn",
"liac-arff>=2.4.0",
"aif360>=0.5.0",
"BlackBoxAuditing",
"typing-extensions",
"pandas",
]
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["lale*"]
[tool.setuptools.package-data]
lale = ["py.typed"]