diff --git a/Makefile b/Makefile index 9033955..7b9048e 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,9 @@ +install: + pip install . --upgrade + +uninstall: + pip uninstall pyModeS -y + ext: python setup.py build_ext --inplace @@ -5,6 +11,8 @@ test: python -m pytest clean: - python setup.py clean --all find pyModeS/c_decoder -type f -name '*.c' -delete find pyModeS/c_decoder -type f -name '*.so' -delete + find . -name "__pycache__" -type d -exec rm -r "{}" \; + rm -rf *.egg-info + rm -rf build/*