16 lines
236 B
Makefile
16 lines
236 B
Makefile
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
|