Full local build
pip3 install . -v
Editable build for testing
- Remove_skbuild
-
pip3 install -v --no-build-isolation --editable .
Test
```python
pytest '/Users/Shared/Work/spreader.py/code/wrappers/python'
Make source distribution
rm -rf code/wrappers/python/src/spreader.egg-info
mkdir -p dist/tmp
python setup.py egg_info --egg-base dist/tmp sdist
Make wheel
rm -rf code/wrappers/python/src/spreader.egg-info
mkdir -p dist/tmp
python setup.py egg_info --egg-base dist/tmp bdist_wheel