-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
59 lines (50 loc) · 1.18 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
[tool.poetry]
name = "fluidexec"
version = "0.1.0"
license = "Apache-2.0"
authors = ["Peifeng <[email protected]>"]
readme = "README.md"
repository = "https://github.com/SymbioticLab/fluid"
description = "Resource-aware hyperparameter tuning execution engine"
packages = [
{ include = "fluid" },
{ include = "workloads", format = "sdist" },
]
include = [
"LINCENSE"
]
[tool.poetry.dependencies]
python = ">=3.7,<3.9"
ray = {version = "0.8.5", extras = ["tune"]}
numpy = "*"
requests = "*"
# optional dependencies used by exp workloads
hpbandster = { version = "*", optional = true }
ConfigSpace = { version = "*", optional = true }
pandas = { version = "*", optional = true }
[tool.poetry.extras]
exp = [
"hpbandster",
"ConfigSpace",
"pandas",
]
[tool.poetry.dev-dependencies]
pytest = "^6.2"
black = "^21.4b0"
isort = "^5.8.0"
flake8 = "^4.0.1"
gym = "^0.18.0"
dm-tree = "^0.1.6"
opencv-python = "^4.5.1"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = [
"tests"
]
log_level = "DEBUG"
addopts = "--exitfirst --verbose --failed-first"
[tool.isort]
profile = "black"
multi_line_output = 3