forked from pycaret/pycaret
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
236 lines (220 loc) · 5.87 KB
/
pyproject.toml
File metadata and controls
236 lines (220 loc) · 5.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
[project]
name = "pycaret"
version = "3.4.0"
description = "PyCaret - An open source, low-code machine learning library in Python."
readme = "README.md"
keywords = [
"data-mining",
"data-science",
"classification",
"clustering",
"detection",
"forecasting",
"machine-learning",
"regression",
"scikit-learn<1.5",
"time-series",
]
license = { file = "LICENSE" }
maintainers = [
{ name = "pycaret developers" },
]
# for full credits see contributors.md
authors = [
{ name = "pycaret developers" },
]
requires-python = ">=3.9,<3.13"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
]
# core dependencies of pycaret
# this set should be kept minimal!
dependencies = [
# Base
"ipython>=5.5.0",
"ipywidgets>=7.6.5",
"tqdm>=4.62.0",
"numpy>=1.21, <1.27",
"pandas<2.2",
"jinja2>=3",
"scipy>=1.6.1,<=1.11.4", # to fix later (
"joblib>=1.4.2,<1.5",
"scikit-learn<1.5",
"pyod>=1.1.3",
"imbalanced-learn>=0.12.0,<0.14.0",
"category-encoders>=2.4.0",
"lightgbm>=3.0.0",
"numba>=0.55.0",
"requests>=2.27.1", # Required by pycaret.datasets
"psutil>=5.9.0",
"markupsafe>=2.0.1", # Fixes Google Colab issue
"importlib_metadata>=4.12.0",
"nbformat>=4.2.0",
"cloudpickle",
"deprecation>=2.1.0",
"xxhash",
"wurlitzer; platform_system != 'Windows'",
"trio>=0.22.0,<0.25.0", # fixes problems about third-party packages, remove after httpcore 1.05
"setuptools; python_version>='3.12'",
# Plotting
"matplotlib<3.8.0", # stem(..., use_line_collection=False) is no longer supported.
"mljar-scikit-plot", # this is a updated version of original scikit-plot
"yellowbrick>=1.4",
"plotly>=5.14.0",
"kaleido>=0.2.1",
"schemdraw==0.15", # 0.16 only supports Python >3.8
"plotly-resampler>=0.8.3.1",
# Time-series
"statsmodels>=0.12.1",
"sktime>=0.31.0,<0.31.1",
"tbats>=1.1.3",
"pmdarima>=2.0.4",
]
[project.optional-dependencies]
# there are the following dependency sets:
# - full - all soft dependencies
# - analysis
# - models
# - tuners
# - mlops
# - parallel
# - dev
# - test
# soft dependencies are not required for the core functionality of pycaret
# all soft dependencies
#
# users can install via "pip install pycaret[full]"
#
full = [
"shap>=0.44.0,<0.47.0",
"interpret>=0.2.7",
"umap-learn>=0.5.2",
"pyyaml",
"ydata-profiling>=4.3.1",
"explainerdashboard>=0.3.8", # For dashboard method
"fairlearn==0.7.0", # For check_fairness method
"xgboost>=2.0.0",
"catboost>=1.2.5",
"kmodes>=0.11.1",
"mlxtend>=0.19.0",
"statsforecast<1.8.0,>1.6",
"scikit-learn-intelex<2024.7.0; platform_machine == 'x86_64' or platform_machine == 'AMD64'",
"tune-sklearn",
"ray[tune]",
"hyperopt>=0.2.7",
"optuna>=3.0.0",
"optuna-integration",
"scikit-optimize>=0.9.0",
"mlflow>=2.0.0",
"gradio>=3.50.2",
"boto3>=1.24.56", # For deploy_model method
"fastapi", # For web api
"uvicorn>=0.17.6", # For web api
"m2cgen>=0.9.0", # For model conversion
"evidently<0.4.30", # test_check_drift fails with 0.4.30
"dask<2024.6.3",
"distributed<2024.6.3",
"fugue==0.9.1",
"flask",
"Werkzeug>=2.2,<3.0",
"pytest==8.3.2",
"moto<5.0.0", # missing moto.mock_s3 on moto>=5.0.0
# "codecov>=2.1.12", # https://github.com/home-assistant/core/issues/91283
"fugue[dask]",
"dash[testing]",
"black>=24.8.0",
"isort>=5.13.2",
"flake8>=7.1.1",
"setuptools>=71.1.0",
"mypy>=0.11.1",
]
analysis = [
"shap>=0.44.0,<0.47.0",
"interpret>=0.2.7",
"umap-learn>=0.5.2",
"pyyaml",
"ydata-profiling>=4.3.1",
"explainerdashboard>=0.3.8", # For dashboard method
"fairlearn==0.7.0", # For check_fairness method
]
models = [
"xgboost>=2.0.0",
"catboost>=1.2.5",
"kmodes>=0.11.1",
"mlxtend>=0.19.0",
"statsforecast<1.8.0,>1.6",
"scikit-learn-intelex<2024.7.0; platform_machine == 'x86_64' or platform_machine == 'AMD64'",
]
tuners = [
"tune-sklearn",
"ray[tune]",
"hyperopt>=0.2.7",
"optuna>=3.0.0",
"optuna-integration",
"scikit-optimize>=0.9.0",
]
mlops = [
"mlflow>=2.0.0",
"gradio>=3.50.2",
"boto3>=1.24.56", # For deploy_model method
"fastapi", # For web api
"uvicorn>=0.17.6", # For web api
"m2cgen>=0.9.0", # For model conversion
"evidently<0.4.30", # test_check_drift fails with 0.4.30
]
parallel = [
"dask<2024.6.3",
"distributed<2024.6.3",
"fugue==0.9.1",
"flask",
"Werkzeug>=2.2,<3.0",
]
prophet = [
"prophet>=1.0.1",
]
# dev - the developer dependency set, for contributors to sktime
dev = [
"black>=24.8.0",
"isort>=5.13.2",
"flake8>=7.1.1",
"setuptools>=71.1.0",
"mypy>=0.11.1",
]
# CI related soft dependency sets - not for users of pycaret
# they are stable and subject to deprecation policies
test = [
"pytest==8.3.2",
"moto<5.0.0", # missing moto.mock_s3 on moto>=5.0.0
# "codecov>=2.1.12", # https://github.com/home-assistant/core/issues/91283
"fugue[dask]",
"dash[testing]",
]
[project.urls]
"API Reference" = "https://pycaret.gitbook.io/"
Documentation = "https://pycaret.gitbook.io/"
Download = "https://pypi.org/project/pycaret/#files"
Homepage = "https://pycaret.org/"
"Release Notes" = "https://github.com/pycaret/pycaret/releases"
Repository = "https://github.com/pycaret/pycaret"
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>61",
]
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*"]