blob: 4cc03460f53654855e202185b6881bd64cab8076 [file] [log] [blame]
Austin Schuhe89fa2d2019-08-14 20:24:23 -07001#!/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