Added makefile

pull/8/head
Mark Qvist 2022-01-10 02:15:23 +01:00
parent 77de3f6568
commit aca00b9884
1 changed files with 15 additions and 0 deletions

15
Makefile 100644
View File

@ -0,0 +1,15 @@
all: release
clean:
@echo Cleaning...
-rm -r ./build
-rm -r ./dist
build_wheel:
python3 setup.py sdist bdist_wheel
release: build_wheel
upload:
@echo Uploading to PyPi...
twine upload dist/*