Updated setup.py to build base python setup

This commit is contained in:
Alejandro Saucedo
2020-11-01 06:53:51 +00:00
parent 816c5c7f5d
commit f86e5b1341
4 changed files with 13 additions and 33 deletions

View File

@@ -1,36 +1,9 @@
#include <pybind11/pybind11.h>
int add(int i, int j) {
return i + j;
}
#include "kompute/Kompute.hpp"
namespace py = pybind11;
PYBIND11_MODULE(cmake_example, m) {
m.doc() = R"pbdoc(
Pybind11 example plugin
-----------------------
.. currentmodule:: cmake_example
.. autosummary::
:toctree: _generate
add
subtract
)pbdoc";
m.def("add", &add, R"pbdoc(
Add two numbers
Some other explanation about the add function.
)pbdoc");
m.def("subtract", [](int i, int j) { return i - j; }, R"pbdoc(
Subtract two numbers
Some other explanation about the subtract function.
)pbdoc");
#ifdef VERSION_INFO
m.attr("__version__") = VERSION_INFO;