-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
47 lines (42 loc) · 1.3 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
[project]
name = "quicktunetool"
version = "0.0.1"
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",
"timm >= 0.9.16",
"tqdm >= 4.66.0",
]
[project.urls]
"Homepage" = "https://github.com/automl/quicktunetool"
"Bug Reports" = "https://github.com/automl/quicktunetool/issues"
"Source" = "https://github.com/automl/quicktunetool"
[project.scripts]
train = "qtt.finetune.cv.classification.train:main_cli"
validate = "qtt.finetune.cv.classification.validate:main_cli"
[tool.setuptools.packages.find]
where = ["src"]