1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
django-client-reverse/scripts/distribute

12 lines
258 B
Text
Raw Normal View History

2015-12-10 21:27:29 +00:00
#!/usr/bin/env bash
set -eu
[ -z "$CIRCLE_USERNAME" ] && { echo "Must be run on CircleCI."; exit 1;}
echo ">> Building Packages..."
2015-12-10 22:18:01 +00:00
python setup.py build sdist
2015-12-10 21:27:29 +00:00
echo ">> Uploading Packages to PyPi..."
twine upload dist/* -u TheOrangeOne -p $PYPI_PASSWORD