1#!/bin/bash 2 3DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 4PROD_REPOSITORY="https://upload.pypi.org/legacy/" 5TEST_REPOSITORY="https://test.pypi.org/legacy/" 6 7twine upload \ 8 --username "$PYPI_USERNAME" \ 9 --password "$PYPI_PASSWORD" \ 10 --repository-url "$PROD_REPOSITORY" \ 11 "$DIR/../python/dist/"* 12 13