diff --git a/Makefile b/Makefile index 19c0e31..e7ff8de 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,15 @@ -.PHONY: format lint test update +.PHONY: clean format lint test update default: lint test build +clean: + rm -f .coverage + rm -fr .eggs + rm -fr .pytest_cache + rm -fr dist + rm -fr **/__pycache__ + rm -fr build + format: isort . black .