osiris account 661ee11504 💾
2023-03-11 21:35:51 -08:00

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