Spaces:
Configuration error
Configuration error
File size: 136 Bytes
128ba2c |
1 2 3 4 5 6 7 |
#!/bin/sh
set -eux
rm -rf build dist src/*.egg-info
python3 setup.py sdist bdist_wheel
twine check dist/*
twine upload dist/* --verbose
|