build.sh 139 B

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/*