-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (79 loc) · 2 KB
/
pyproject.toml
File metadata and controls
88 lines (79 loc) · 2 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
[build-system]
requires = ["setuptools>=61", "setuptools_scm>=7.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "TPOT"
description = "Tree-based Pipeline Optimization Tool"
readme = "README.md"
requires-python = ">=3.10,<3.14"
license = { text = "LGPL-3.0" }
authors = [
{ name = "Pedro Ribeiro" }
]
keywords = [
"pipeline optimization",
"hyperparameter optimization",
"data science",
"machine learning",
"genetic programming",
"evolutionary computation"
]
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
dependencies = [
"numpy>=1.26.4",
"scipy>=1.3.1",
"scikit-learn>=1.6",
"update_checker>=0.16",
"tqdm>=4.36.1",
"stopit>=1.1.1",
"pandas>=2.2.0",
"joblib>=1.1.1",
"xgboost>=3.0.0",
"matplotlib>=3.6.2",
"traitlets>=5.8.0",
"lightgbm>=3.3.3",
"optuna>=3.0.5",
"networkx>=3.0",
"dask>=2024.4.2",
"distributed>=2024.4.2",
"dask-expr>=1.0.12",
"dask-jobqueue>=0.8.5",
"func_timeout>=4.3.5",
"configspace>=1.1.1",
"dill>=0.3.9",
"seaborn>=0.13.2",
]
dynamic = ["version"]
[project.optional-dependencies]
skrebate = ["skrebate>=0.3.4"]
mdr = ["scikit-mdr>=0.4.4"]
sklearnex = ["scikit-learn-intelex>=2023.2.1"]
amltk = ["amltk>=1.12.1"]
testing = [
"pytest>=6.0",
"pytest-cov>=2.0",
"mypy>=0.910",
"flake8>=3.9",
"tox>=3.24"
]
[project.urls]
Homepage = "https://github.com/EpistasisLab/tpot"
[project.scripts]
tpot = "tpot:main"
[tool.setuptools]
packages = ["tpot"]
zip-safe = true
[tool.setuptools.package-data]
tpot = ["py.typed"]
[tool.flake8]
max-line-length = 120
[tool.setuptools_scm]
# setuptools_scm gets the version from Git tags, e.g git tag v1.1.0
# then python -m build embeds the version into the package