diff --git a/bin/deploy.sh b/bin/deploy.sh new file mode 100644 index 0000000..e4b4d02 --- /dev/null +++ b/bin/deploy.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +cat << EOF > /root/.pypirc +[distutils] +index-servers=pypi + +[pypi] +username=${PYPI_USERNAME} +password=${PYPI_PASSWORD} +EOF + +python setup.py sdist +twine upload dist/*