pwdtools/scripts/pypi.sh
Ari Archer 0ea2b3b6d6
init
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2023-10-27 20:48:15 +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 "$@"