diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a2efec5 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +.PHONY: all build publish + +all: build publish + +build: + python setup.py bdist_wheel --universal sdist + +publish: + twine upload dist/gixy-`grep -oP "(?<=version\s=\s['\"])[^'\"]*(?=['\"])" gixy/__init__.py`* +