Scaffolding for a Python C++ extension.
Adapted from https://gist.github.com/sbmueller/d645f32e8413d9799c7d087f77dcfa7b
- Install the package in a virtual env
make
make install
- Start the Python interpreter
.env/bin/python3
- Write some code
>>> import spam
>>> spam.hello("world")
Hello world!