showdialog/Makefile

17 lines
236 B
Makefile
Raw Normal View History

2022-11-01 15:20:36 +03:00
build:
python -m build
upload:
python -m twine upload dist/*
clean:
rm -rf dist/
rm -rf showdialog/__pycache__/
check:
python -m mypy .
python -m pylint -j 4 ./showdialog
format:
python -m autopep8 -r --in-place ./showdialog