Arquivos
yewtube/wheel_recipe.sh
2024-09-11 17:02:20 +05:00

8 linhas
196 B
Bash
Arquivo Executável

# a script to build and upload wheel files on pypi.org
rm -rf dist/
semantic-release version
python -m build --sdist
python -m build --wheel
twine upload --verbose dist/*
semantic-release publish