2025-07-22 13:51:43 -04:00
|
|
|
[build-system]
|
2026-06-12 14:00:40 -04:00
|
|
|
requires = ["meson-python>=0.19,<0.20", "meson>=1.9.1,<1.10", "pybind11==3.0.0"]
|
2025-07-22 13:51:43 -04:00
|
|
|
build-backend = "mesonpy"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "fourdst" # Choose your Python package name
|
2026-06-11 07:42:17 -04:00
|
|
|
dynamic = ["version"]
|
2025-07-22 13:51:43 -04:00
|
|
|
description = "Python interface to the utility fourdst modules from the 4D-STAR project"
|
|
|
|
|
readme = "readme.md"
|
|
|
|
|
license = { file = "LICENSE.txt" } # Reference your license file [cite: 2]
|
|
|
|
|
|
|
|
|
|
authors = [
|
|
|
|
|
{name = "Emily M. Boudreaux", email = "emily@boudreauxmail.com"},
|
|
|
|
|
]
|
|
|
|
|
maintainers = [
|
|
|
|
|
{name = "Emily M. Boudreaux", email = "emily@boudreauxmail.com"}
|
|
|
|
|
]
|
2025-08-04 13:45:03 -04:00
|
|
|
|
|
|
|
|
dependencies = [
|
2025-08-09 18:48:34 -04:00
|
|
|
"typer",
|
2025-08-04 13:45:03 -04:00
|
|
|
"libclang",
|
|
|
|
|
"questionary",
|
2025-08-06 08:25:03 -04:00
|
|
|
"rich",
|
2025-08-06 08:39:29 -04:00
|
|
|
"pyyaml",
|
2025-08-09 08:57:47 -04:00
|
|
|
"cryptography",
|
2025-08-09 18:48:34 -04:00
|
|
|
"pyOpenSSL",
|
|
|
|
|
"pyinstaller"
|
2025-08-04 13:45:03 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
fourdst-cli = "fourdst.cli.main:app"
|
2026-06-11 13:58:17 -04:00
|
|
|
fourdst-compiler-flags = "fourdst:get_compiler_flags_formatted"
|
|
|
|
|
fourdst-include-dirs = "fourdst:get_include_dirs"
|
|
|
|
|
fourdst-lib-dirs = "fourdst:get_lib_dirs"
|
|
|
|
|
fourdst-rpath-flags = "fourdst:get_rpath_flags"
|
|
|
|
|
fourdst-version = "fourdst:print_fourdst_version"
|
2026-06-12 10:53:13 -04:00
|
|
|
fourdst-extra-flags = "fourdst:get_extra_flags"
|
2025-08-04 13:45:03 -04:00
|
|
|
|
2025-12-20 14:49:27 -05:00
|
|
|
[tool.meson-python.args]
|
|
|
|
|
setup = [
|
|
|
|
|
'-Dpkg_config=false',
|
|
|
|
|
'-Dbuild_python=true',
|
|
|
|
|
'-Delectron_build_py_backend=false',
|
|
|
|
|
'-Dbuild_tests=false',
|
|
|
|
|
'-Dbuild_lib_all=false',
|
|
|
|
|
'-Dbuild_lib_comp=true',
|
|
|
|
|
'-Dbuild_lib_config=true',
|
|
|
|
|
'-Dbuild_lib_const=true',
|
|
|
|
|
'-Dbuild_lib_log=true',
|
|
|
|
|
'-Dbuild_lib_plugin=false'
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|