generated from nabenabe0928/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.08 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
[tool.poetry]
name = "mfhpo-simulator"
version = "0.1.0"
description = "The simulator for multi-fidelity or parallel optimization using tabular or surrogate benchmarks"
authors = ["Shuhei Watanabe <[email protected]>"]
license = "Apache-2.0 license"
readme = "README.md"
packages = [{include = "benchmark_simulator"}]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
ujson = "^5.7.0"
numpy = "^1.24.3"
[tool.poetry.group.dev.dependencies]
ujson = "^5.7.0"
numpy = "^1.24.3"
h5py = "^3.8.0"
pyqt5 = "^5.15.9"
pytest-cov = "^4.0.0"
pytest = "^7.3.1"
black = "^23.3.0"
flake8 = "^6.0.0"
mypy = "^1.3.0"
ipython = "^8.13.2"
jahs-bench = "1.1.0"
dehb = "0.0.5"
hpbandster = "0.7.4"
[tool.poetry.group.smac.dependencies]
ujson = "^5.7.0"
numpy = "^1.24.3"
h5py = "^3.8.0"
pyqt5 = "^5.15.9"
pytest-cov = "^4.0.0"
pytest = "^7.3.1"
black = "^23.3.0"
flake8 = "^6.0.0"
mypy = "^1.3.0"
ipython = "^8.13.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py38']
include = '\.pyi?$'
extend-exclude = '''
'''