web-mini/scripts/pypi.sh
2023-10-08 06:37:47 +03:00

12 lines
139 B
Bash
Executable file

#!/usr/bin/env sh
set -eux
main() {
rm -rf -- dist
python3 -m build --wheel
python3 -m twine upload dist/*.whl
}
main "$@"