feat(pybind11): added infra to compile with pybind11

This commit is contained in:
2025-04-30 11:39:36 -04:00
parent 9ed4e6f328
commit 57d60d7bb7
6 changed files with 46 additions and 0 deletions

16
pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
[build-system]
requires = [
"meson-python>=0.15.0", # Use a recent version
"meson>=1.6.0", # Specify your Meson version requirement
"pybind11>=2.10" # pybind11 headers needed at build time
]
build-backend = "mesonpy"
[project]
name = "fourdstar" # Choose your Python package name
version = "0.1.0" # Your project's version
description = "Python interface for the 4DSSE C++ project"
readme = "Readme.md"
license = { file = "LICENSE.txt" } # Reference your license file [cite: 2]
# Add authors, classifiers, URLs etc. as needed
# See: https://packaging.python.org/en/latest/specifications/declaring-project-metadata/