web3-starter-py/web3-toolkit/Makefile
osiris account 314bdf533e 💾
2023-03-12 15:32:23 -07: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