showdialog/Makefile

15 lines
201 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__/
2022-11-01 15:38:34 +03:00
rm -rf .mypy_cache/
2022-11-01 15:20:36 +03:00
check:
python -m mypy .
python -m pylint -j 4 ./showdialog