-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 896 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 896 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
35
[build-system]
requires = [
"scikit-build-core >=0.4.3",
"nanobind >=1.3.2",
"setuptools >= 64",
"setuptools_scm >= 8",
]
build-backend = "scikit_build_core.build"
[project]
name = "shazam"
license = "MIT"
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.10"
license-files = ["LICENSE"]
dependencies = [ "numpy", "typing_extensions" ]
description = "I/O for SPOTLIGHT ring buffers, with the power of SHAZAM!"
[project.urls]
Homepage = "https://github.com/astrogewgaw/shazam"
[tool.scikit-build]
wheel.py-api = "cp312"
minimum-version = "0.4"
build-dir = "build/{wheel_tag}"
sdist.include = ["python/shazam/_version.py"]
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
[tool.setuptools_scm]
write_to = "python/shazam/_version.py"
[tool.cibuildwheel]
build-verbosity = 1