changed: build opm-common python extension using cmake

only use setup.py to generate wheels. adjust pypi packaging
accordingly
This commit is contained in:
Arne Morten Kvarving
2023-01-06 15:59:34 +01:00
parent 85fc610c85
commit 5d854d1d6d
11 changed files with 101 additions and 301 deletions

View File

@@ -25,6 +25,6 @@ void python::common::export_all(py::module& module) {
}
PYBIND11_MODULE(libopmcommon_python, module) {
PYBIND11_MODULE(opmcommon_python, module) {
python::common::export_all(module);
}