twine 1.10.0-1 source package in Ubuntu

Changelog

twine (1.10.0-1) unstable; urgency=medium

  [ Stefano Rivera ]
  * Team upload.
  * New upstream release. (Closes: #825341, #884649)
    - Has useful documentation. (Closes: #827568, #827569)
  * Add symlink to ease finding rst docs.
  * Drop patches, superseded upstream.
  * Update copyright.
  * Update Homepage to point to the canonical GitHub repo.
  * Migrate to git, pq, and salsa.debian.org.
  * Add myself to uploaders.
  * Declare Rules-Requires-Root: no.
  * Bump debhelper compat to 10.
  * Bump Standards-Version to 4.1.3, no changes needed.
  * Patch no-needs-sphinx: Don't requires sphinx 1.7.0.
  * Don't compress HTML in docs.
  * Lintian override PyPI capitalization.

  [ Ondřej Nový ]
  * d/copyright: Use https protocol in Format field
  * d/watch: Use https protocol

 -- Stefano Rivera <email address hidden>  Fri, 16 Mar 2018 17:13:20 -0700

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
Bionic release universe misc

Builds

Bionic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
twine_1.10.0-1.dsc 1.9 KiB 66eb0767e8f94ff349e9410cda81ef3b6df64cb65c1868e3c5a4744cc7bd5f5a
twine_1.10.0.orig.tar.gz 38.8 KiB c3540f2b98667698412b0dc9f5e40c8c1a08a9e79e255c9c21339105eb4ca57a
twine_1.10.0-1.debian.tar.xz 34.9 KiB 0c8af79624039f77082988c6345dc0fbb71c59a6aa37872384c1c6d964e38f3a

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).