-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (30 loc) · 912 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
[build-system]
requires = ["scikit-build-core>=0.10.1", "setuptools-scm>=8.1", "pybind11>=2.13.5"]
build-backend = "scikit_build_core.build"
[project]
name = "pytampl"
version = "0.1.0"
description="Python Bindings for Task and Motion Planning Library (TAMPL)"
requires-python = ">=3.8"
[project.optional-dependencies]
test = ["pytest"]
[tool.pytest.ini_options]
minversion = "8.0"
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
xfail_strict = true
log_cli_level = "INFO"
filterwarnings = [
"error",
"ignore::pytest.PytestCacheWarning",
]
testpaths = ["tests"]
[tool.scikit-build]
wheel.install-dir = "pytampl"
wheel.packages = ["bindings/pytampl"]
build-dir = "build/{wheel_tag}/{build_type}"
wheel.exclude = ["**.cpp", "**.hpp", "**.txt"]
logging.level = "INFO"
build.verbose = true
cmake.args = ["-DOMPL_BUILD_TESTS=OFF"]
[tool.setuptools.packages.find]
where = ["bindings"]