Collection of utilities for publishing packages on PyPI
Project description
Twine is a utility for publishing Python packages on PyPI.
It provides build system independent uploads of source and binary distribution artifacts for both new and existing projects.
Why Should I Use This?
The goal of twine is to improve PyPI interaction by improving security and testability.
The biggest reason to use twine is that it securely authenticates you to PyPI over HTTPS using a verified connection regardless of the underlying Python version, while whether or not python setup.py upload will work correctly and securely depends on your build system, your Python version and the underlying operating system.
Secondly, it allows you to precreate your distribution files. python setup.py upload only allows you to upload something that you’re building with distutils or setuptools, and 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, twine allows you to pre-sign your files and pass the .asc files into the command line invocation (twine upload myproject-1.0.1.tar.gz myproject-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)
Installation
$ pip install twine
Using Twine
Create some distributions in the normal way:
$ python setup.py sdist bdist_wheel
Upload with twine to Test PyPI and verify things look right. Twine will automatically prompt for your username and password:
$ twine upload --repository-url https://test.pypi.org/legacy/ dist/* username: ... password: ...
Upload to PyPI:
$ twine upload dist/*
Done!
More documentation on using twine to upload packages to PyPI is in the Python Packaging User Guide.
Keyring Support
Instead of typing in your password every time you upload a distribution, Twine allows you to store your username and password securely using keyring.
To use the keyring, you must first install the keyring packages:
On Windows and MacOS you just need to install keyring, for example, pip install --user keyring.
On Linux, in addition to the keyring package you also need to ensure the python3-dbus system package is installed. For example, apt install python3-dbus. See Keyring’s installation instructions for more details.
Once keyring is installed you can use the keyring program to set your username and password to use for each package index (repository) you want to upload to using Twine.
To set your username and password for test PyPI run the following command. keyring will prompt you for your password:
$ keyring set https://test.pypi.org/legacy/ your-username
# or
$ python3 -m keyring set https://test.pypi.org/legacy/ your-username
To set your username and password for PyPI run this command, again, keyring will prompt for the password:
$ keyring set https://upload.pypi.org/legacy/ your-username
# or
$ python3 -m keyring set https://upload.pypi.org/legacy/ your-username
The next time you run twine it will prompt you for a username and will grab the appropriate password from the keyring.
Disabling Keyring
In some cases, the presence of keyring may be problemmatic. To disable keyring and defer to a prompt for passwords, uninstall keyring or if that’s not an option, you can also configure keyring to be disabled.
See twine 338 for a discussion on ways to do that.
Options
twine upload
Uploads one or more distributions to a repository.
$ twine upload -h
usage: twine upload [-h] [-r REPOSITORY] [--repository-url REPOSITORY_URL]
[-s] [--sign-with SIGN_WITH] [-i IDENTITY] [-u USERNAME]
[-p PASSWORD] [-c COMMENT] [--config-file CONFIG_FILE]
[--skip-existing] [--cert path] [--client-cert path]
dist [dist ...]
positional arguments:
dist The distribution files to upload to the repository
(package index). Usually dist/* . May additionally
contain a .asc file to include an existing signature
with the file upload.
optional arguments:
-h, --help show this help message and exit
-r REPOSITORY, --repository REPOSITORY
The repository (package index) to upload the package
to. Should be a section in the config file (default:
pypi). (Can also be set via TWINE_REPOSITORY
environment variable.)
--repository-url REPOSITORY_URL
The repository (package index) URL to upload the
package to. This overrides --repository. (Can also be
set via TWINE_REPOSITORY_URL environment variable.)
-s, --sign Sign files to upload using GPG.
--sign-with SIGN_WITH
GPG program used to sign uploads (default: gpg).
-i IDENTITY, --identity IDENTITY
GPG identity used to sign files.
-u USERNAME, --username USERNAME
The username to authenticate to the repository
(package index) as. (Can also be set via
TWINE_USERNAME environment variable.)
-p PASSWORD, --password PASSWORD
The password to authenticate to the repository
(package index) with. (Can also be set via
TWINE_PASSWORD environment variable.)
-c COMMENT, --comment COMMENT
The comment to include with the distribution file.
--config-file CONFIG_FILE
The .pypirc config file to use.
--skip-existing Continue uploading files if one already exists. (Only
valid when uploading to PyPI. Other implementations
may not support this.)
--cert path Path to alternate CA bundle (can also be set via
TWINE_CERT environment variable).
--client-cert path Path to SSL client certificate, a single file
containing the private key and the certificate in PEM
format.
twine check
Checks whether your distributions long description will render correctly on PyPI.
$ twine check -h
usage: twine check [-h] dist [dist ...]
positional arguments:
dist The distribution files to check, usually dist/*
optional arguments:
-h, --help show this help message and exit
twine register
WARNING: The register command is no longer necessary if you are uploading to pypi.org. As such, it is no longer supported in Warehouse (the new PyPI software running on pypi.org). However, you may need this if you are using a different package index.
For completeness, its usage:
$ twine register -h
usage: twine register [-h] -r REPOSITORY [--repository-url REPOSITORY_URL]
[-u USERNAME] [-p PASSWORD] [-c COMMENT]
[--config-file CONFIG_FILE] [--cert path]
[--client-cert path]
package
positional arguments:
package File from which we read the package metadata.
optional arguments:
-h, --help show this help message and exit
-r REPOSITORY, --repository REPOSITORY
The repository (package index) to register the package
to. Should be a section in the config file. (Can also
be set via TWINE_REPOSITORY environment variable.)
Initial package registration no longer necessary on
pypi.org:
https://packaging.python.org/guides/migrating-to-pypi-
org/
--repository-url REPOSITORY_URL
The repository (package index) URL to register the
package to. This overrides --repository. (Can also be
set via TWINE_REPOSITORY_URL environment variable.)
-u USERNAME, --username USERNAME
The username to authenticate to the repository
(package index) as. (Can also be set via
TWINE_USERNAME environment variable.)
-p PASSWORD, --password PASSWORD
The password to authenticate to the repository
(package index) with. (Can also be set via
TWINE_PASSWORD environment variable.)
-c COMMENT, --comment COMMENT
The comment to include with the distribution file.
--config-file CONFIG_FILE
The .pypirc config file to use.
--cert path Path to alternate CA bundle (can also be set via
TWINE_CERT environment variable).
--client-cert path Path to SSL client certificate, a single file
containing the private key and the certificate in PEM
format.
Environment Variables
Twine also supports configuration via environment variables. Options passed on the command line will take precedence over options set via environment variables. Definition via environment variable is helpful in environments where it is not convenient to create a .pypirc file, such as a CI/build server, for example.
TWINE_USERNAME - the username to use for authentication to the repository.
TWINE_PASSWORD - the password to use for authentication to the repository.
TWINE_REPOSITORY - the repository configuration, either defined as a section in .pypirc or provided as a full URL.
TWINE_REPOSITORY_URL - the repository URL to use.
TWINE_CERT - custom CA certificate to use for repositories with self-signed or untrusted certificates.
Resources
IRC (#pypa - irc.freenode.net)
User and developer documentation
Contributing
See our developer documentation for how to get started, an architectural overview, and our future development plans.
Code of Conduct
Everyone interacting in the twine project’s codebases, issue trackers, chat rooms, and mailing lists is expected to follow the PyPA Code of Conduct.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for twine-1.12.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce67d3e5352e5700762cfcde34ee54ed8cd4863ec0fd452b2aa5cdc451a6399e |
|
MD5 | 6976f9b5300fbfca4e44478fad7eba21 |
|
BLAKE2b-256 | 13ad4738f78528f4c47ef1fd145e929bc123f19b0a424d6847ce618365c2826e |