Created make file w/ build, dist, install & upload

This commit is contained in:
2022-09-26 00:18:19 +02:00
parent e03247bcc6
commit 32cb0e51a7

17
Makefile Normal file
View File

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