-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 811 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 811 Bytes
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
[tool.poetry]
name = "arm-mango"
version = "1.6.0"
description = "parallel bayesian optimization over complex search spaces"
authors = ["Sandeep Singh Sandha <sandha.iitr@gmail.com>", "Mohit Aggarwal <mohitagg@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/ARM-software/mango"
repository = "https://github.com/ARM-software/mango"
packages = [
{ include = "mango" }
]
classifiers = [
"Programming Language :: Python :: 3",
]
[tool.poetry.dependencies]
python = ">=3.10"
numpy = ">=1.17.0"
scipy = ">=1.4.1"
scikit_learn = ">=0.21.3"
tqdm = ">=4.36.1"
[tool.poetry.group.dev.dependencies]
black = "^24.2.0"
pytest = "^7.4.0"
jupyter = "^1.0.0"
flake8 = "^7.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"