-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 1008 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (29 loc) · 1008 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
33
34
[build-system]
requires = ["scikit-build-core>=0.10", "nanobind>=2.0"]
build-backend = "scikit_build_core.build"
[project]
name = "bayesian-group-testing"
version = "0.0.1"
description = "Modern C++/parallel/CUDA Bayesian group testing runtime with Python bindings"
requires-python = ">=3.9"
dependencies = ["numpy"]
[project.optional-dependencies]
dev = ["pytest", "numpy"]
[tool.scikit-build]
cmake.source-dir = "."
wheel.packages = ["python/bayesian_group_testing"]
[tool.scikit-build.cmake.define]
BGT_BUILD_PYTHON = "ON"
BGT_BUILD_EXAMPLES = "OFF"
BUILD_TESTING = "OFF"
[tool.pytest.ini_options]
testpaths = ["tests/python"]
markers = [
"unit: fast tests for Python API shape and value objects",
"integration: tests that call the native runtime through Python",
"e2e: installed-package and command-line behavior",
"regression: fixed numerical cases that should not drift",
"parallel: parallel execution tests",
"cuda: CUDA-provider tests",
"slow: long-running tests",
]