cqas/scripts/pypi.sh
Arija A. 82a7c1553d
Init
Signed-off-by: Arija A. <ari@ari.lt>
2025-09-20 14:47:49 +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 "$@"