mirror of
https://github.com/autistic-symposium/web3-starter-py.git
synced 2025-05-17 06:02:12 -04:00
12 lines
164 B
Makefile
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
|