mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2025-04-23 07:10:03 +02:00
34 lines
631 B
TOML
34 lines
631 B
TOML
[build-system]
|
|
requires = ["scikit-build-core>=0.10", "pybind11", "numpy"]
|
|
build-backend = "scikit_build_core.build"
|
|
|
|
[project]
|
|
name = "aare"
|
|
version = "2025.4.2"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"numpy",
|
|
"matplotlib",
|
|
]
|
|
|
|
|
|
[tool.cibuildwheel]
|
|
|
|
build = "cp{311,312,313}-manylinux_x86_64"
|
|
|
|
|
|
|
|
[tool.scikit-build]
|
|
build.verbose = true
|
|
cmake.build-type = "Release"
|
|
install.components = ["python"]
|
|
|
|
[tool.scikit-build.cmake.define]
|
|
AARE_PYTHON_BINDINGS = "ON"
|
|
AARE_INSTALL_PYTHONEXT = "ON"
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
markers = [
|
|
"files: marks tests that need additional data (deselect with '-m \"not files\"')",
|
|
] |