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 (26 lines) | stat: -rw-r--r-- 430 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
21
22
23
24
25
26
[build-system]
requires = [
    "scikit_build_core",
    "pybind11",
]
build-backend = "scikit_build_core.build"

[tool.scikit-build]
cmake.source-dir = "src"

[project]
name = "CMake.Example"
version = "0.0.1"
requires-python = ">=3.8"

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

[project.scripts]
something = "other:callme"

[project.gui-scripts]
guithing = "a.b:c"

[project.entry-points."one.two"]
three = "four"