-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
56 lines (47 loc) · 1.33 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
[project]
name = "VOPy"
# version = "0.0.1"
dynamic = ["version"]
authors = [
{ name="Y. Cahit Yıldırım", email="[email protected]" },
]
description = "A framework for black-box vector optimization"
readme = "README.md"
license = {file="LICENSE"}
requires-python = ">=3.10"
dependencies = [
"botorch>=0.10.0,<0.12.0",
"cvxpy",
"scikit-learn",
"scipy",
"matplotlib",
]
[project.urls]
Homepage = "https://github.com/Bilkent-CYBORG/VOPy"
Documentation = "https://vopy.readthedocs.io/en/latest/"
Issues = "https://github.com/Bilkent-CYBORG/VOPy/issues"
[project.optional-dependencies]
dev = ["black", "usort", "flake8", "flake8-print"]
test = ["pre-commit", "pytest", "pytest-xdist", "pytest-cov", "bandit"]
examples = ["jupyter"]
docs = ["pydocstyle", "sphinx_rtd_theme", "sphinx-notfound-page", "nbsphinx"]
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["vopy"]
include-package-data = true
[tool.setuptools.package-data]
"vopy" = ["datasets/data/*"]
[tool.setuptools_scm]
# Should be present even if its empty.
local_scheme = "node-and-date"
write_to = "./vopy/version.py"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::UserWarning",
]
[tool.black]
line-length = 100
# [tool.bandit.assert_used]
# skips = ['*/test_*.py']