diff --git a/Makefile b/Makefile index 5ead195..2c18f3f 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ all: @echo nothing special clean: - rm -rf build dist src site wheelhouse *.egg-info + rm -rf build dist cubao_headers site wheelhouse *.egg-info force_clean: docker run --rm -v `pwd`:`pwd` -w `pwd` -it alpine/make make clean .PHONY: clean force_clean @@ -15,3 +15,8 @@ package: mkdir -p cubao_headers cp -rf include cubao_headers python3 build.py > setup.py + python3 setup.py sdist + +upload: + python3 -m pip install twine + twine upload dist/cubao_headers-*.tar.gz -r pypi