|
| 1 | +[build-system] |
| 2 | +requires = [ |
| 3 | + "scikit-build-core>=0.9", |
| 4 | +] |
| 5 | +build-backend = "scikit_build_core.build" |
| 6 | + |
| 7 | +[project] |
| 8 | +name = "panda3d-interrogate" |
| 9 | +version = "0.0.1" |
| 10 | +description = "Binding generator designed for Panda3D" |
| 11 | +readme = "README.md" |
| 12 | +requires-python = ">=3.2" |
| 13 | +license = { "file" = "LICENSE" } |
| 14 | +classifiers = [ |
| 15 | + "Development Status :: 5 - Production/Stable", |
| 16 | + "Intended Audience :: Developers", |
| 17 | + "License :: OSI Approved :: BSD License", |
| 18 | + "Operating System :: OS Independent", |
| 19 | + "Programming Language :: C++", |
| 20 | +] |
| 21 | + |
| 22 | +[project.urls] |
| 23 | +Source = "https://github.com/panda3d/interrogate" |
| 24 | +Tracker = "https://github.com/panda3d/interrogate/issues" |
| 25 | +Funding = "https://opencollective.com/panda3d" |
| 26 | + |
| 27 | +[project.scripts] |
| 28 | +interrogate = "interrogate:main" |
| 29 | +interrogate_module = "interrogate_module:main" |
| 30 | + |
| 31 | +[tool.scikit-build] |
| 32 | +cmake.version = ">=3.13" |
| 33 | +cmake.args = ["-DBUILD_SHARED_LIBS=OFF", "-DHAVE_PYTHON=ON", "-DPYTHON_ARCH_INSTALL_DIR=."] |
| 34 | +wheel.py-api = "cp32" |
| 35 | +install.components = ["tools", "python_modules"] |
| 36 | + |
| 37 | +[tool.scikit-build.wheel.packages] |
| 38 | +interrogate = "python/interrogate" |
| 39 | +interrogate_module = "python/interrogate_module" |
0 commit comments