-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.28 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (44 loc) · 1.28 KB
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
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "trust-bo"
version = "0.3.0"
description = "CPU-only Trust Region Bayesian Optimization (TuRBO-style) with a Rust core, built for CFD-scale budgets"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Kotaro Ozawa" }]
requires-python = ">=3.9"
dependencies = ["numpy>=1.21"]
keywords = [
"bayesian-optimization",
"trust-region",
"turbo",
"optimization",
"cfd",
"rust",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Rust",
"Topic :: Scientific/Engineering",
]
[project.urls]
Homepage = "https://github.com/K092203/TRust-BO"
Repository = "https://github.com/K092203/TRust-BO"
Issues = "https://github.com/K092203/TRust-BO/issues"
Changelog = "https://github.com/K092203/TRust-BO/blob/main/CHANGELOG.md"
[tool.maturin]
bindings = "pyo3"
module-name = "trust_bo._lib"
features = ["pyo3/extension-module"]
python-source = "python"
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"eval: long-running evaluation tests (run with -m eval)",
]