mirror of
https://github.com/autistic-symposium/blockchain-data-engineering-toolkit.git
synced 2025-04-25 18:29:19 -04:00
23 lines
385 B
Makefile
23 lines
385 B
Makefile
.PHONY: clean
|
|
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 .tox
|
|
@rm -rf venv/lib/python*/site-packages/*.egg
|
|
|
|
.PHONY: install
|
|
install:
|
|
python3 setup.py install
|
|
|
|
.PHONY: install_dep
|
|
install_deps:
|
|
pip3 install -r requirements.txt
|
|
|
|
.PHONY: lint
|
|
lint:
|
|
tox -e lint
|