A simple tool for generating Python C/C++ extension boilerplate code.
Note the boilerplate code generated by sebae is self-contained. The only necessary dependency is Python itself.
pip install sebaeInitialize a boilerplate project
> sebae init [optional project directory]
Select init schema:
1.pybind11
selection ([q]uit):
> 1
Package name:
> test_pkg
Author:
> actcwlf
Author email:
> abc@def.com
Initializing pybind11 schema project test_pkg
Finish!If no project directory is specified, sebae will use pybind11_project as default project directory.
cd pybind11_project
pip install .To avoid name conflict, make sure you are not in project directory
cd ..
pythonIn python cmd
Python 3.7 ....
>>> import test_pkg
>>> test_pkg.add(1, 2)
3.0