Update Makefile

This commit is contained in:
mia von steinkirch, phd 2022-12-24 15:03:46 -08:00 committed by GitHub
parent f252be6ff0
commit b85003ecb7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 20 deletions

View file

@ -0,0 +1,12 @@
.PHONY: clean install lint
install:
poetry install
clean:
@find . -iname '__pycache__' -delete
poetry cache clear
poetry env remove --all
lint:
tox -e lint