-
-
Notifications
You must be signed in to change notification settings - Fork 369
Expand file tree
/
Copy pathpyproject.toml
More file actions
123 lines (114 loc) · 2.54 KB
/
pyproject.toml
File metadata and controls
123 lines (114 loc) · 2.54 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
[build-system]
requires = ["setuptools>=64,<75", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "lazypredict"
version = "0.3.0"
description = "Lazy Predict helps build a lot of basic models without much code and helps understand which models work better without any parameter tuning"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
authors = [
{ name = "Shankar Rao Pandala", email = "shankar.pandala@live.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"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",
]
dependencies = [
"click",
"scikit-learn>=1.0",
"pandas>=1.3",
"tqdm>=4.0",
"joblib>=1.0",
"numpy>=1.21",
]
[project.optional-dependencies]
boost = [
"xgboost>=1.5",
"lightgbm>=3.0",
"catboost>=1.0",
]
mlflow = [
"mlflow>=2.0.0,<3.0",
]
timeseries = [
"statsmodels>=0.13",
"pmdarima>=2.0",
]
deeplearning = [
"torch>=2.0",
]
foundation = [
"timesfm",
]
tune = [
"optuna>=3.0",
]
viz = [
"matplotlib>=3.5",
]
explain = [
"shap>=0.42",
]
interpret = [
"interpret>=0.4",
]
flaml = [
"flaml>=2.0",
]
spark = [
"pyspark>=3.3",
]
all = [
"xgboost>=1.5",
"lightgbm>=3.0",
"catboost>=1.0",
"mlflow>=2.0.0,<3.0",
"category_encoders>=2.0",
"statsmodels>=0.13",
"pmdarima>=2.0",
"torch>=2.0",
"timesfm",
"optuna>=3.0",
"shap>=0.42",
"interpret>=0.4",
"matplotlib>=3.5",
]
dev = [
"pytest>=7",
"pytest-cov>=4",
"flake8>=6",
"mypy>=1.0",
"optuna>=3.0",
]
[project.scripts]
lazypredict = "lazypredict.cli:main"
[project.urls]
Homepage = "https://github.com/shankarpandala/lazypredict"
Documentation = "https://shankarpandala.github.io/lazypredict/"
Repository = "https://github.com/shankarpandala/lazypredict"
Issues = "https://github.com/shankarpandala/lazypredict/issues"
[tool.setuptools.packages.find]
include = ["lazypredict*"]
[tool.setuptools.package-data]
lazypredict = ["py.typed"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-x --tb=short"
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
[tool.flake8]
max-line-length = 120
max-complexity = 10