feat(python-eos): work on python eos module

This commit is contained in:
2025-05-13 14:18:38 -04:00
parent bc36dd459d
commit b5980ea57a
9 changed files with 81 additions and 21 deletions

View File

@@ -5,6 +5,7 @@
#include "const/bindings.h"
#include "composition/bindings.h"
#include "config/bindings.h"
#include "eos/bindings.h"
PYBIND11_MODULE(fourdsse_bindings, m) {
m.doc() = "Python bindings for the 4DSSE project";
@@ -17,4 +18,7 @@ PYBIND11_MODULE(fourdsse_bindings, m) {
auto configMod = m.def_submodule("config", "Configuration-module bindings");
register_config_bindings(configMod);
auto eosMod = m.def_submodule("eos", "EOS-module bindings");
register_eos_bindings(eosMod);
}