-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
66 lines (60 loc) · 1.77 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
[tool.poetry]
name = "bask"
version = "0.10.9"
description = "A fully Bayesian implementation of sequential model-based optimization"
authors = ["Karlson Pfannschmidt <[email protected]>"]
license = "Apache-2.0"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Software Development"
]
readme = "README.rst"
repository = "https://github.com/kiudee/bayes-skopt"
keywords = ["optimization", "bayesian", "hyperparameters", "robust"]
documentation = "https://bayes-skopt.readthedocs.io"
[tool.poetry.dependencies]
python = ">=3.8,<3.10"
arviz = ">=0.10.0"
emcee = ">=3.0.2"
matplotlib = ">=3.3.0"
numpy = ">=1.16,<1.24"
scikit-learn = "^1"
scikit-optimize = ">=0.9"
scipy = ">=1.2"
tqdm = ">=4.48.2"
nbsphinx = {version = ">=0.7.1", optional = true}
nbsphinx-link = {version = ">=1.3.0", optional = true}
numpydoc = {version = ">=1.1.0", optional = true}
Sphinx = {version = ">=3.1.2", optional = true}
[tool.poetry.dev-dependencies]
black = "^19.10b0"
Click = ">=7.1.2,<=8.0.4" # black depends on internal Click API
coverage = ">=5.2.1"
flake8 = ">=3.8.3"
flake8-bugbear = "^20.1.4"
ipython = ">=7.17.0"
isort = "^5.3.0"
nbsphinx = ">=0.7.1"
nbsphinx-link = ">=1.3.0"
nox = ">=2021.6.12"
nox-poetry = ">=0.8.6"
numpydoc = ">=1.1.0"
pip = ">=20.2.1"
pre-commit = ">=2.6.0"
pytest = ">=6.0.1"
pytest-runner = ">=5.2"
Sphinx = ">=3.1.2"
twine = ">=3.2.0"
watchdog = ">=0.10.3"
wheel = ">=0.34.2"
[tool.poetry.extras]
docs = ["Sphinx", "numpydoc", "nbsphinx", "nbsphinx-link"]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/kiudee/bayes-skopt/issues"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"