diff --git a/Makefile b/Makefile index 8d7f618..a8e7f91 100644 --- a/Makefile +++ b/Makefile @@ -11,3 +11,10 @@ build: clean python3 setup.py sdist python3 setup.py bdist_wheel + +# Publish +# Requires: python3 -m pip install twine +.PHONY: publish +publish: build + twine upload dist/* +