2025-06-12 15:21:34 +02:00

11 lines
201 B
Bash
Executable File

#!/bin/bash
# install build tools
pip install build
# build package
python3 -m build
# upload to pypi
python3 -m twine upload dist/*
python3 -m twine upload --skip-existing --repository gitea dist/*