You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
322 B
13 lines
322 B
#!/bin/bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
PROD_REPOSITORY="https://upload.pypi.org/legacy/"
|
|
TEST_REPOSITORY="https://test.pypi.org/legacy/"
|
|
|
|
twine upload \
|
|
--username "$PYPI_USERNAME" \
|
|
--password "$PYPI_PASSWORD" \
|
|
--repository-url "$PROD_REPOSITORY" \
|
|
"$DIR/../python/dist/"*
|
|
|