2025-07-23 16:26:30 -04:00
|
|
|
[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 = "gridfire" # Choose your Python package name
|
2025-11-28 11:30:14 -05:00
|
|
|
version = "0.7.3_rc2" # Your project's version
|
2025-07-23 16:26:30 -04:00
|
|
|
description = "Python interface to the GridFire nuclear network code"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
license = { file = "LICENSE.txt" } # Reference your license file [cite: 2]
|
|
|
|
|
|
|
|
|
|
authors = [
|
|
|
|
|
{name = "Emily M. Boudreaux", email = "emily@boudreauxmail.com"},
|
|
|
|
|
{name = "Aaron Dotter", email = "aaron.dotter@gmail.com"}
|
|
|
|
|
]
|
|
|
|
|
maintainers = [
|
|
|
|
|
{name = "Emily M. Boudreaux", email = "emily@boudreauxmail.com"}
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.meson-python.args]
|
|
|
|
|
setup = ['-Dpkg-config=false']
|