megacom/Makefile

16 lines
205 B
Makefile
Raw Normal View History

.PHONY: check install dist upload
2021-05-12 18:51:47 +00:00
check:
@mypy . || true
@flake8 . || true
@pyflakes . || true
install:
pip install --user -e .
dist:
python3 -m build
upload: dist
python3 -m twine upload dist/*