-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
74 lines (67 loc) · 1.8 KB
/
pyproject.toml
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
[project]
name = "quicktunetool"
version = "0.0.4"
description = "A Framework for Efficient Model Selection and Hyperparameter Optimization"
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
keywords = ["Machine Learning", "AutoML", "HPO", "Fine-Tuning", "Meta-Learning"]
authors = [
{ name = "Ivo Rapant", email = "[email protected]" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Build Tools",
]
dependencies = [
"torch > 2.0.0",
"torchvision >= 0.15.1",
"ConfigSpace >= 1.2.0",
"gpytorch >= 1.9.0",
"numpy < 2",
"pandas >= 2.0.0",
"pyyaml >= 6.0.1",
"scikit-learn == 1.5.0",
"tqdm >= 4.66.0",
"fimm",
"commitizen"
]
[project.optional-dependencies]
dev = ["quicktunetool[docs, tooling]"]
tooling = ["commitizen", "pre-commit", "ruff", "mypy", "types-psutil", "types-pyyaml"]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocs-autorefs",
"mkdocs-awesome-pages-plugin",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-glightbox",
"mkdocstrings[python]",
"markdown-exec[ansi]",
"matplotlib",
"more-itertools",
"rich",
"typing-extensions",
"mike",
"pillow",
"cairosvg",
"black",
]
[project.urls]
"Homepage" = "https://github.com/automl/quicktunetool"
"Bug Reports" = "https://github.com/automl/quicktunetool/issues"
"Source" = "https://github.com/automl/quicktunetool"
[tool.setuptools.packages.find]
where = ["src"]
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.0.4"
update_changelog_on_bump = true
version_files = ["pyproject.toml:version"]