-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.1 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (54 loc) · 1.1 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
[build-system]
requires = ["hatchling>=1.26"]
build-backend = "hatchling.build"
[project]
name = "hpo-learning-lab"
version = "2.0.0"
description = "A reproducible, bilingual hyperparameter optimization learning lab"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "hyeonsangjeon", email = "wingnut0310@gmail.com" },
]
dependencies = [
"cmaes>=0.11",
"filelock>=3.15",
"lightgbm>=4.3",
"matplotlib>=3.9",
"numpy>=1.26",
"optuna>=4.0",
"pandas>=2.0",
"scikit-learn>=1.4",
"scipy>=1.11",
]
[project.optional-dependencies]
notebook = [
"ipykernel>=6.29",
"ipywidgets>=8.1",
"jupyterlab>=4.2",
"nbclient>=0.10",
"nbformat>=5.10",
]
dev = [
"ipykernel>=6.29",
"ipywidgets>=8.1",
"jupyterlab>=4.2",
"nbclient>=0.10",
"nbformat>=5.10",
"pytest>=8.3",
]
[project.scripts]
hpo-lab = "hpo_lab.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/hpo_lab"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/LICENSE",
"/README.md",
"/pyproject.toml",
]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]