blob: 4cc03460f53654855e202185b6881bd64cab8076 [file] [log] [blame]
Michael Holler0c8b4c72017-11-22 16:46:00 -06001#!/bin/bash
2
3DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
Mike Hollerda0bda62017-11-27 16:05:45 -06004PROD_REPOSITORY="https://upload.pypi.org/legacy/"
Michael Holler0c8b4c72017-11-22 16:46:00 -06005TEST_REPOSITORY="https://test.pypi.org/legacy/"
6
7twine upload \
Mike Holler77996422017-12-13 15:14:01 -06008 --username "$PYPI_USERNAME" \
Michael Holler0c8b4c72017-11-22 16:46:00 -06009 --password "$PYPI_PASSWORD" \
10 --repository-url "$PROD_REPOSITORY" \
11 "$DIR/../python/dist/"*
12