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.

123456789
  1. #!/bin/bash
  2. set -e
  3. rm -rf build dist *.egg-info
  4. pip install setuptools wheel twine
  5. python setup.py sdist bdist_wheel
  6. twine upload dist/*