web3-starter-py/web3_python_toolkit/Makefile
mia von steinkirch, phd b85003ecb7
Update Makefile
2022-12-24 15:03:46 -08:00

12 lines
164 B
Makefile

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