-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
64 lines (54 loc) · 1.61 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = [
"scikit-build-core>=0.9",
]
build-backend = "scikit_build_core.build"
[project]
name = "panda3d-interrogate"
version = "0.5.0"
description = "Binding generator designed for Panda3D"
readme = "README.md"
requires-python = ">=3.2"
license = { "file" = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: C++",
]
[project.urls]
Source = "https://github.com/panda3d/interrogate"
Tracker = "https://github.com/panda3d/interrogate/issues"
Funding = "https://opencollective.com/panda3d"
[project.scripts]
interrogate = "interrogate:main"
interrogate_module = "interrogate_module:main"
[tool.scikit-build]
cmake.version = ">=3.13"
cmake.args = ["-DBUILD_SHARED_LIBS=OFF", "-DHAVE_PYTHON=ON", "-DPYTHON_ARCH_INSTALL_DIR=."]
wheel.py-api = "cp33"
install.components = ["tools", "python_modules"]
[tool.scikit-build.wheel.packages]
interrogate = "python/interrogate"
interrogate_module = "python/interrogate_module"
[tool.cibuildwheel]
build = "cp38-* cp313t-*"
free-threaded-support = true
[tool.cibuildwheel.linux]
repair-wheel-command = [
"auditwheel repair -w {dest_dir} {wheel}",
]
[tool.cibuildwheel.macos]
archs = ["universal2"]
repair-wheel-command = [
"cp {wheel} {dest_dir}",
]
[tool.cibuildwheel.windows]
repair-wheel-command = [
"copy {wheel} {dest_dir}",
]
[[tool.cibuildwheel.overrides]]
select = "cp38-*"
inherit.repair-wheel-command = "append"
repair-wheel-command = "pipx run abi3audit --strict --report {wheel}"