#include int add(int i, int j) { return i + j; } int subtract(int i, int j) { return i - j; } namespace py = pybind11; PYBIND11_PLUGIN(python_example) { py::module m("python_example", R"pbdoc( Pybind11 example plugin ----------------------- .. currentmodule:: python_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", &subtract, R"pbdoc( Subtract two numbers Some other explanation about the subtract function. )pbdoc"); return m.ptr(); }