diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..86a9edf --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +publish: + pip install twine + python setup.py sdist + twine upload dist/* + +ci-publish: + echo '[pypi]' > ~/.pypirc + echo 'username=lukicdarkoo' >> ~/.pypirc + echo "password=${PYPI_PASSWORD}" >> ~/.pypirc + $(MAKE) publish \ No newline at end of file