.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/*