add removing of *.egg-info to Makefile clean-build command

This commit is contained in:
Paul Robinson
2024-04-30 09:48:50 -06:00
committed by GitHub
parent 21c5fe3e2b
commit ae8113250e

View File

@ -18,6 +18,7 @@ clean: clean-build clean-pyc
clean-build:
rm -fr build/
rm -fr dist/
rm -fr *.egg-info
clean-pyc:
find . -name '*.pyc' -exec rm -f {} +