Files and structure for python interface

This commit is contained in:
Erik Fröjdh
2024-10-28 11:22:12 +01:00
parent 5d643dc133
commit a4fb217e3f
26 changed files with 2238 additions and 43 deletions

9
python/src/module.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include <pybind11/pybind11.h>
namespace py = pybind11;
PYBIND11_MODULE(_aare, m) {
}