pyModeS/Makefile

19 lines
344 B
Makefile
Raw Normal View History

2019-10-30 05:24:27 +08:00
install:
pip install . --upgrade
uninstall:
pip uninstall pyModeS -y
2019-10-30 00:53:39 +08:00
ext:
python setup.py build_ext --inplace
test:
python -m pytest
clean:
find pyModeS/c_decoder -type f -name '*.c' -delete
find pyModeS/c_decoder -type f -name '*.so' -delete
2019-10-30 05:24:27 +08:00
find . -name "__pycache__" -type d -exec rm -r "{}" \;
rm -rf *.egg-info
rm -rf build/*