flatbuffers/.travis/deploy-python.sh

13 lines
322 B
Bash
Raw Normal View History

2017-11-22 22:46:00 +00:00
#!/bin/bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
PROD_REPOSITORY="https://upload.pypi.org/legacy/"
2017-11-22 22:46:00 +00:00
TEST_REPOSITORY="https://test.pypi.org/legacy/"
twine upload \
2017-12-13 21:14:01 +00:00
--username "$PYPI_USERNAME" \
2017-11-22 22:46:00 +00:00
--password "$PYPI_PASSWORD" \
--repository-url "$PROD_REPOSITORY" \
"$DIR/../python/dist/"*