Forrest logo
back to context overview

twine

List of commands for twine:

  • twine:tldr:14b57 twine: Continue uploading files if one already exists (only valid when uploading to PyPI).
    $ twine upload --skip-existing dist/*
    try on your machine
    explain this command
  • twine:tldr:34b86 twine: Check that your distribution's long description should render correctly on PyPI.
    $ twine check dist/*
    try on your machine
    explain this command
  • twine:tldr:4006f twine: Upload to PyPI.
    $ twine upload dist/*
    try on your machine
    explain this command
  • twine:tldr:664f8 twine: Upload to PyPI showing detailed information.
    $ twine upload --verbose dist/*
    try on your machine
    explain this command
  • twine:tldr:75e6c twine: Upload to PyPI with a specified [u]sername and [p]assword.
    $ twine upload -u ${username} -p ${password} dist/*
    try on your machine
    explain this command
  • twine:tldr:9cd40 twine: Upload using a specific pypirc configuration file.
    $ twine upload --config-file ${configuration_file} dist/*
    try on your machine
    explain this command
  • twine:tldr:9f78a twine: Upload to the Test PyPI [r]epository to verify things look right.
    $ twine upload -r testpypi dist/*
    try on your machine
    explain this command
  • twine:tldr:ec5d8 twine: Upload to an alternative repository URL.
    $ twine upload --repository-url ${repository_url} dist/*
    try on your machine
    explain this command
back to context overview