diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile index ccf1f60..19aef5b 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,10 @@ all: build build: - python setup.py build + python setup.py sdist + +release: clean build + twine upload dist/* clean: rm -rf dist build openbsd.egg-info/ |