-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (44 loc) · 1.32 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
[tool.poetry]
name = "hpo4dl"
version = "0.1.0"
description = "Hyper parameter optimization for deep learning"
authors = [
"Rishan Senanayake <[email protected]>"
]
maintainers = [
"Sebastian Pineda <[email protected]>",
"Arlind Kadra <[email protected]>",
"Rishan Senanayake",
"Josif Grabocka",
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/releaunifreiburg/HPO4DL"
repository = "https://github.com/releaunifreiburg/HPO4DL"
keywords = ["Hyperparameter Optimization", "AutoML"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
packages = [{ include = "hpo4dl" }]
[tool.poetry.dependencies]
python = "^3.8"
timm = "^0.9.2"
configspace = "^0.7.1"
pandas = "^2.0.3"
scikit-learn = "^1.3.0"
gpytorch = "^1.11"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pre-commit = "^3.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"