web3-starter-py/web3toolkit/Makefile
mvonsteinkirch 58a160dcf5 💾
2022-12-26 18:15:56 -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