twine 1.3.1-1~ubuntu14.04.1 source package in Ubuntu

Changelog

twine (1.3.1-1~ubuntu14.04.1) trusty-backports; urgency=medium

  * No-change backport to trusty (LP: #1397405)
 -- Scott Kitterman <email address hidden>   Fri, 28 Nov 2014 13:39:57 -0500

Upload details

Uploaded by:
Scott Kitterman
Uploaded to:
Trusty
Original maintainer:
Zygmunt Krynicki
Architectures:
all
Section:
utils
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty backports universe utils

Builds

Trusty: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
twine_1.3.1.orig.tar.gz 17.4 KiB fe5131c2b2bd7a831731b4c205080b670ad467fe2649082eb9fc2b161c2864d3
twine_1.3.1-1~ubuntu14.04.1.debian.tar.gz 34.1 KiB 926a63059dbc2bbbb0c8333c8fea56b27576f2b2523758aba0af977a8c339cbe
twine_1.3.1-1~ubuntu14.04.1.dsc 2.1 KiB c850678968e814840783a185151e645445ca681880fbd11539fff952b508fcfa

View changes file

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 I Use This?
 .
 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).