1
1
.. image :: https://img.shields.io/pypi/v/twine.svg
2
- :target: https://pypi.org/project/twine
2
+ :target: https://pypi.org/project/twine
3
3
4
4
.. image :: https://img.shields.io/pypi/pyversions/twine.svg
5
- :target: https://pypi.org/project/twine
5
+ :target: https://pypi.org/project/twine
6
6
7
7
.. image :: https://img.shields.io/readthedocs/twine
8
- :target: https://twine.readthedocs.io
8
+ :target: https://twine.readthedocs.io
9
9
10
10
.. image :: https://img.shields.io/travis/com/pypa/twine
11
- :target: https://travis-ci.org/pypa/twine
11
+ :target: https://travis-ci.org/pypa/twine
12
12
13
13
.. image :: https://img.shields.io/codecov/c/github/pypa/twine
14
- :target: https://codecov.io/gh/pypa/twine
14
+ :target: https://codecov.io/gh/pypa/twine
15
15
16
16
twine
17
17
=====
@@ -105,8 +105,7 @@ Keyring Support
105
105
Instead of typing in your password every time you upload a distribution, Twine
106
106
allows storing a username and password securely using `keyring `_.
107
107
Keyring is installed with Twine but for some systems (Linux mainly) may
108
- require
109
- `additional installation steps <https://pypi.org/project/keyring/#installation-linux >`_.
108
+ require `additional installation steps `_.
110
109
111
110
Once Twine is installed, use the ``keyring `` program to set a
112
111
username and password to use for each package index (repository) to
@@ -117,24 +116,25 @@ For example, to set a username and password for PyPI:
117
116
.. code-block :: console
118
117
119
118
$ keyring set https://upload.pypi.org/legacy/ your-username
120
- # or
119
+
120
+ or
121
+
122
+ .. code-block :: console
123
+
121
124
$ python3 -m keyring set https://upload.pypi.org/legacy/ your-username
122
125
123
- And enter the password when prompted.
126
+ and enter the password when prompted.
124
127
125
128
For a different repository, replace the URL with the relevant repository
126
129
URL. For example, for Test PyPI, use ``https://test.pypi.org/legacy/ ``.
127
130
128
131
The next time you run ``twine ``, it will prompt you for a username and will grab
129
132
the appropriate password from the keyring.
130
133
131
- .. Note :: If you are using Linux in a headless environment (such as on a
132
- server) you'll need to do some additional steps to ensure that Keyring can
133
- store secrets securely. See `Using Keyring on headless systems `_.
134
+ ** Note: ** If you are using Linux in a headless environment (such as on a server)
135
+ you'll need to do some additional steps to ensure that Keyring can store secrets
136
+ securely. See `Using Keyring on headless systems `_.
134
137
135
- .. _`keyring` : https://pypi.org/project/keyring/
136
- .. _`Using Keyring on headless systems` :
137
- https://keyring.readthedocs.io/en/latest/#using-keyring-on-headless-linux-systems
138
138
139
139
Disabling Keyring
140
140
^^^^^^^^^^^^^^^^^
@@ -148,7 +148,11 @@ To disable keyring, simply invoke:
148
148
.. code-block :: console
149
149
150
150
$ keyring --disable
151
- or
151
+
152
+ or
153
+
154
+ .. code-block :: console
155
+
152
156
$ python -m keyring --disable
153
157
154
158
That command will configure for the current user the "null" keyring,
@@ -169,7 +173,6 @@ Uploads one or more distributions to a repository.
169
173
.. code-block :: console
170
174
171
175
$ twine upload -h
172
-
173
176
usage: twine upload [-h] [-r REPOSITORY] [--repository-url REPOSITORY_URL]
174
177
[-s] [--sign-with SIGN_WITH] [-i IDENTITY] [-u USERNAME]
175
178
[-p PASSWORD] [-c COMMENT] [--config-file CONFIG_FILE]
@@ -239,10 +242,10 @@ PyPI.
239
242
usage: twine check [-h] dist [dist ...]
240
243
241
244
positional arguments:
242
- dist The distribution files to check, usually dist/*
245
+ dist The distribution files to check, usually dist/*
243
246
244
247
optional arguments:
245
- -h, --help show this help message and exit
248
+ -h, --help show this help message and exit
246
249
247
250
``twine register ``
248
251
^^^^^^^^^^^^^^^^^^
@@ -309,13 +312,13 @@ Environment Variables
309
312
Twine also supports configuration via environment variables. Options passed on
310
313
the command line will take precedence over options set via environment
311
314
variables. Definition via environment variable is helpful in environments where
312
- it is not convenient to create a `.pypirc ` file, such as a CI/build server, for
313
- example .
315
+ it is not convenient to create a `` .pypirc `` file (for example,
316
+ on a CI/build server) .
314
317
315
318
* ``TWINE_USERNAME `` - the username to use for authentication to the repository.
316
319
* ``TWINE_PASSWORD `` - the password to use for authentication to the repository.
317
320
* ``TWINE_REPOSITORY `` - the repository configuration, either defined as a
318
- section in `.pypirc ` or provided as a full URL.
321
+ section in `` .pypirc ` ` or provided as a full URL.
319
322
* ``TWINE_REPOSITORY_URL `` - the repository URL to use.
320
323
* ``TWINE_CERT `` - custom CA certificate to use for repositories with
321
324
self-signed or untrusted certificates.
@@ -348,13 +351,22 @@ trackers, chat rooms, and mailing lists is expected to follow the
348
351
.. _`publishing` : https://packaging.python.org/tutorials/distributing-packages/
349
352
.. _`PyPI` : https://pypi.org
350
353
.. _`Test PyPI` : https://packaging.python.org/guides/using-testpypi/
351
- .. _`Python Packaging User Guide` : https://packaging.python.org/tutorials/distributing-packages/
354
+ .. _`Python Packaging User Guide` :
355
+ https://packaging.python.org/tutorials/distributing-packages/
356
+ .. _`keyring` : https://pypi.org/project/keyring/
357
+ .. _`Using Keyring on headless systems` :
358
+ https://keyring.readthedocs.io/en/latest/#using-keyring-on-headless-linux-systems
359
+ .. _`additional installation steps` :
360
+ https://pypi.org/project/keyring/#installation-linux
352
361
.. _`documentation` : https://twine.readthedocs.io/
353
- .. _`developer documentation` : https://twine.readthedocs.io/en/latest/contributing.html
362
+ .. _`developer documentation` :
363
+ https://twine.readthedocs.io/en/latest/contributing.html
354
364
.. _`projects` : https://packaging.python.org/glossary/#term-project
355
- .. _`distributions` : https://packaging.python.org/glossary/#term-distribution-package
365
+ .. _`distributions` :
366
+ https://packaging.python.org/glossary/#term-distribution-package
356
367
.. _`PyPA Code of Conduct` : https://www.pypa.io/en/latest/code-of-conduct/
357
368
.. _`Warehouse` : https://github.com/pypa/warehouse
358
369
.. _`wheels` : https://packaging.python.org/glossary/#term-wheel
359
- .. _`no longer necessary if you are uploading to pypi.org` : https://packaging.python.org/guides/migrating-to-pypi-org/#registering-package-names-metadata
370
+ .. _`no longer necessary if you are uploading to pypi.org` :
371
+ https://packaging.python.org/guides/migrating-to-pypi-org/#registering-package-names-metadata
360
372
.. _`no longer supported` : https://github.com/pypa/warehouse/issues/1627
0 commit comments