Simple make file for building and upload dist

This commit is contained in:
2022-05-30 21:08:49 +02:00
parent c3ae7e8349
commit be4883d51b
2 changed files with 16 additions and 1 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
.PHONY: clean
binaries=dist build
dist:
python3 setup.py sdist
build:
python3 setup.py build
upload: clean dist
twine upload dist/*
clean:
rm -rf $(binaries)