-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (49 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
61 lines (49 loc) · 1.07 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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "SmartEco"
version = "0.1.1"
description = "SmartEco ecosystem: CPU-first machine learning benchmarking and tooling"
readme = "ReadMe.md"
license = { text = "MIT" }
requires-python = ">=3.9"
authors = [
{ name = "SmartEco" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.23,<3.0",
"pandas>=1.5,<3.0",
"scikit-learn>=1.2,<2.0",
"psutil>=5.9,<6.0",
"openml>=0.14,<1.0",
"smart-knn>=0.2.0",
]
[project.optional-dependencies]
tree = [
"lightgbm>=4.0,<5.0",
"xgboost>=2.0,<3.0",
"catboost>=1.2,<2.0",
]
interpret = [
"interpret>=0.5,<1.0",
]
dl = [
"torch>=2.0,<3.0",
"pytorch-tabnet>=4.1,<5.0",
]
all = [
"lightgbm>=4.0,<5.0",
"xgboost>=2.0,<3.0",
"catboost>=1.2,<2.0",
"interpret>=0.5,<1.0",
"torch>=2.0,<3.0",
"pytorch-tabnet>=4.1,<5.0",
]
[project.urls]
Homepage = "https://thatipamula-jashwanth.github.io/SmartEco/"