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
198 B

  1. #!/usr/bin/env bash
  2. cat << EOF > /root/.pypirc
  3. [distutils]
  4. index-servers=pypi
  5. [pypi]
  6. username=${PYPI_USERNAME}
  7. password=${PYPI_PASSWORD}
  8. EOF
  9. python setup.py sdist bdist_wheel
  10. twine upload dist/*