megacom/Makefile

16 lines
205 B
Makefile

.PHONY: check install dist upload
check:
@mypy . || true
@flake8 . || true
@pyflakes . || true
install:
pip install --user -e .
dist:
python3 -m build
upload: dist
python3 -m twine upload dist/*