Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 563 Bytes

commands.md

File metadata and controls

37 lines (25 loc) · 563 Bytes

Full local build

pip3 install . -v

Editable build for testing

  1. 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