twine Command Examples

Utility for publishing Python packages on PyPI. More information: https://twine.readthedocs.io/en/stable/#commands.

twine upload dist/*

twine upload {{[-r|--repository]}} testpypi dist/*

twine upload {{[-u|--username]}} {{username}} {{[-p|--password]}} {{password}} dist/*

twine upload --repository-url {{repository_url}} dist/*

twine check dist/*

twine upload --config-file {{configuration_file}} dist/*

twine upload --skip-existing dist/*

twine upload --verbose dist/*