2020-02-26 07:16:48 +08:00
|
|
|
install:
|
|
|
|
pip install . --upgrade
|
|
|
|
|
|
|
|
uninstall:
|
|
|
|
pip uninstall pyModeS -y
|
|
|
|
|
|
|
|
ext:
|
|
|
|
python setup.py build_ext --inplace
|
|
|
|
|
|
|
|
test:
|
2020-05-04 05:27:17 +08:00
|
|
|
python -m pytest tests
|
2020-02-26 07:16:48 +08:00
|
|
|
|
|
|
|
clean:
|
|
|
|
find pyModeS/decoder -type f -name '*.c' -delete
|
|
|
|
find pyModeS/decoder -type f -name '*.so' -delete
|
|
|
|
find . | grep -E "(__pycache__|\.pyc|\.pyo$$)" | xargs rm -rf
|
|
|
|
rm -rf *.egg-info
|
|
|
|
rm -rf .pytest_cache
|
|
|
|
rm -rf build/*
|