fix(python): added stubs

code inspection now works with fourdst
This commit is contained in:
2025-11-25 11:54:08 -05:00
parent a799957f3e
commit a55a661b39
14 changed files with 604 additions and 48 deletions

View File

@@ -9,12 +9,12 @@
PYBIND11_MODULE(_phys, m) {
m.doc() = "Python bindings for the fourdst utility modules which are a part of the 4D-STAR project.";
auto compMod = m.def_submodule("composition", "Composition-module bindings");
register_comp_bindings(compMod);
auto atomicMod = m.def_submodule("atomic", "Species bindings");
register_species_bindings(atomicMod);
auto compMod = m.def_submodule("composition", "Composition-module bindings");
register_comp_bindings(compMod);
auto constMod = m.def_submodule("constants", "Constants-module bindings");
register_const_bindings(constMod);