twine 3.1.1-1 source package in Ubuntu

Changelog

twine (3.1.1-1) unstable; urgency=medium

  * New upstream point release.

 -- Stefano Rivera <email address hidden>  Tue, 24 Dec 2019 09:36:25 +0200

Upload details

Uploaded by:
Python Applications Packaging Team
Uploaded to:
Sid
Original maintainer:
Python Applications Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Focal release universe misc

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
twine_3.1.1-1.dsc 1.8 KiB 893c3764cfa74b98c08996ce3c387e06b884c1dfa9e59bed9dc89c2851008bda
twine_3.1.1.orig.tar.gz 142.8 KiB d561a5e511f70275e5a485a6275ff61851c16ffcb3a95a602189161112d9f160
twine_3.1.1-1.debian.tar.xz 28.8 KiB 66b7e6f86060d07b9f9b5d7a978ed7b4050437ac1d87efdcb52b21c4cd5cc606

Available diffs

No changes file available.

Binary packages built by this source

twine: utility for interacting with PyPI

 Twine is a tool for uploading distributions (in the Python meaning) to PyPi.
 .
 Why should twine be used over the traditional approach?
 .
 The biggest reason to use twine is that python setup.py upload uploads files
 over plaintext. This means anytime you use it you expose your username and
 password to a MITM attack. Twine uses only verified TLS to upload to PyPI
 protecting your credentials from theft.
 .
 Secondly it allows you to precreate your distribution files. python setup.py
 upload only allows you to upload something that you’ve created in the same
 command invocation. This means that you cannot test the exact file you’re
 going to upload to PyPI to ensure that it works before uploading it.
 .
 Finally it allows you to pre-sign your files and pass the .asc files into the
 command line invocation (twine upload twine-1.0.1.tar.gz
 twine-1.0.1.tar.gz.asc). This enables you to be assured that you’re typing
 your gpg passphrase into gpg itself and not anything else since you will be
 the one directly executing gpg --detach-sign -a <filename>.
 .
 Features:
 .
  - Verified HTTPS Connections
  - Uploading doesn’t require executing setup.py
  - Uploading files that have already been created, allowing testing of
    distributions before release
  - Supports uploading any packaging format (including wheels).