mirror of
https://github.com/autistic-symposium/web3-starter-py.git
synced 2025-05-17 14:10:21 -04:00
20 lines
No EOL
356 B
Text
20 lines
No EOL
356 B
Text
.PHONY: clean install lint
|
|
|
|
clean:
|
|
@find . -iname '*.py[co]' -delete
|
|
@find . -iname '__pycache__' -delete
|
|
@rm -rf '.pytest_cache'
|
|
@rm -rf dist/
|
|
@rm -rf build/
|
|
@rm -rf *.egg-info
|
|
@rm -rf poetry.lock
|
|
@rm -rf .tox
|
|
@rm -rf venv/lib/python*/site-packages/*.egg
|
|
poetry cache clear
|
|
poetry env remove --all
|
|
|
|
install:
|
|
poetry install
|
|
|
|
lint:
|
|
tox -e lint |