-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (35 loc) · 1.29 KB
/
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
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["scikit-build-core >=0.10", "nanobind @ git+https://github.com/wjakob/nanobind@master"]
build-backend = "scikit_build_core.build"
[project]
authors = [{name = "David Marttila", email = "[email protected]"}]
dependencies = ["numpy>=1.25"]
description = "Python bindings for the Synthesis ToolKit in C++ (STK)"
readme = "README.md"
name = "synthesistoolkit"
requires-python = ">= 3.10"
version = "0.0.1"
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Sound/Audio :: Sound Synthesis"
]
[project.urls]
Homepage = "https://github.com/dsuedholt/pystk"
[tool.scikit-build]
# Protect the configuration against future changes in scikit-build-core
minimum-version = "build-system.requires"
# Setuptools-style build caching in a local directory
build-dir = "build/{wheel_tag}"
# Build stable ABI wheels for CPython 3.12+
wheel.py-api = "cp312"
sdist.exclude = [".github"]
[tool.cibuildwheel]
# Necessary to see build output from the actual compilation
build-verbosity = 1
build-frontend = "build[uv]"
skip = ["pp*", "*musllinux*"]
test-command = "pytest {project}/tests"
test-requires = "pytest"
[tool.cibuildwheel.macos.environment]
MACOSX_DEPLOYMENT_TARGET = "11.0"