-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
37 lines (32 loc) · 1017 Bytes
/
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
[project]
name = "egobox"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Rust",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
]
[build-system]
build-backend = "maturin"
requires = ["maturin>=1.0,<2.0", "poetry_core>=1.0.0"]
[tool.maturin]
python-source = "python"
# Optional usage of BLAS backend
# cargo-extra-args = "--features linfa/intel-mkl-static"
[tool.poetry]
name = "egobox"
version = "0.12.0"
description = "Python binding for egobox EGO optimizer written in Rust"
authors = ["Rémi Lafage <[email protected]>"]
packages = [{ include = "egobox", from = "python" }]
[tool.poetry.dependencies]
numpy = ">=1.18"
python = ">=3.8"
[tool.poetry.dev-dependencies]
pytest = ">=6"