awc/scripts/pypi.sh
Ari Archer 2078bba511
scripts/pypi : fix
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2023-04-12 23:37:37 +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 "$@"