File: pyproject.toml

package info (click to toggle)
scikit-build-core 0.11.1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,408 kB
  • sloc: python: 13,380; ansic: 140; cpp: 134; sh: 27; fortran: 18; makefile: 7
file content (20 lines) | stat: -rw-r--r-- 425 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[build-system]
requires = ["scikit_build_core"]
build-backend = "scikit_build_core.build"

[project]
name = "cmake_dirs"
version = "0.0.1"
requires-python = ">=3.8"

[project.optional-dependencies]
test = ["pytest>=6.0"]

[tool.scikit-build]
wheel.install-dir = "cmake_dirs"
cmake.args = ["-DSOME_ARGS1=foo", "-DSOME_ARGS2=foo"]

[tool.scikit-build.cmake.define]
SOME_DEFINE = "foo"
SOME_DEFINE2 = "foo"
SOME_DEFINE3 = "foo"