clean up and add web3

This commit is contained in:
mvonsteinkirch 2022-12-24 14:45:32 -08:00
parent a0cfa09ec4
commit fc8d690a51
29 changed files with 3043 additions and 31 deletions

View file

@ -0,0 +1,20 @@
.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