Austin Schuh | e89fa2d | 2019-08-14 20:24:23 -0700 | [diff] [blame] | 1 | #!/bin/bash |
2 | |||||
3 | DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||||
4 | PROD_REPOSITORY="https://upload.pypi.org/legacy/" | ||||
5 | TEST_REPOSITORY="https://test.pypi.org/legacy/" | ||||
6 | |||||
7 | twine upload \ | ||||
8 | --username "$PYPI_USERNAME" \ | ||||
9 | --password "$PYPI_PASSWORD" \ | ||||
10 | --repository-url "$PROD_REPOSITORY" \ | ||||
11 | "$DIR/../python/dist/"* | ||||
12 |