Skip to content

Commit 653e82f

Browse files
authored
Reformat
2 parents ebd99ae + 8c22e57 commit 653e82f

File tree

1 file changed

+38
-26
lines changed

1 file changed

+38
-26
lines changed

README.rst

+38-26
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
.. image:: https://img.shields.io/pypi/v/twine.svg
2-
:target: https://pypi.org/project/twine
2+
:target: https://pypi.org/project/twine
33

44
.. image:: https://img.shields.io/pypi/pyversions/twine.svg
5-
:target: https://pypi.org/project/twine
5+
:target: https://pypi.org/project/twine
66

77
.. image:: https://img.shields.io/readthedocs/twine
8-
:target: https://twine.readthedocs.io
8+
:target: https://twine.readthedocs.io
99

1010
.. 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
1212

1313
.. 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
1515

1616
twine
1717
=====
@@ -105,8 +105,7 @@ Keyring Support
105105
Instead of typing in your password every time you upload a distribution, Twine
106106
allows storing a username and password securely using `keyring`_.
107107
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`_.
110109

111110
Once Twine is installed, use the ``keyring`` program to set a
112111
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:
117116
.. code-block:: console
118117
119118
$ keyring set https://upload.pypi.org/legacy/ your-username
120-
# or
119+
120+
or
121+
122+
.. code-block:: console
123+
121124
$ python3 -m keyring set https://upload.pypi.org/legacy/ your-username
122125
123-
And enter the password when prompted.
126+
and enter the password when prompted.
124127

125128
For a different repository, replace the URL with the relevant repository
126129
URL. For example, for Test PyPI, use ``https://test.pypi.org/legacy/``.
127130

128131
The next time you run ``twine``, it will prompt you for a username and will grab
129132
the appropriate password from the keyring.
130133

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`_.
134137

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
138138

139139
Disabling Keyring
140140
^^^^^^^^^^^^^^^^^
@@ -148,7 +148,11 @@ To disable keyring, simply invoke:
148148
.. code-block:: console
149149
150150
$ keyring --disable
151-
or
151+
152+
or
153+
154+
.. code-block:: console
155+
152156
$ python -m keyring --disable
153157
154158
That command will configure for the current user the "null" keyring,
@@ -169,7 +173,6 @@ Uploads one or more distributions to a repository.
169173
.. code-block:: console
170174
171175
$ twine upload -h
172-
173176
usage: twine upload [-h] [-r REPOSITORY] [--repository-url REPOSITORY_URL]
174177
[-s] [--sign-with SIGN_WITH] [-i IDENTITY] [-u USERNAME]
175178
[-p PASSWORD] [-c COMMENT] [--config-file CONFIG_FILE]
@@ -239,10 +242,10 @@ PyPI.
239242
usage: twine check [-h] dist [dist ...]
240243
241244
positional arguments:
242-
dist The distribution files to check, usually dist/*
245+
dist The distribution files to check, usually dist/*
243246
244247
optional arguments:
245-
-h, --help show this help message and exit
248+
-h, --help show this help message and exit
246249
247250
``twine register``
248251
^^^^^^^^^^^^^^^^^^
@@ -309,13 +312,13 @@ Environment Variables
309312
Twine also supports configuration via environment variables. Options passed on
310313
the command line will take precedence over options set via environment
311314
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).
314317

315318
* ``TWINE_USERNAME`` - the username to use for authentication to the repository.
316319
* ``TWINE_PASSWORD`` - the password to use for authentication to the repository.
317320
* ``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.
319322
* ``TWINE_REPOSITORY_URL`` - the repository URL to use.
320323
* ``TWINE_CERT`` - custom CA certificate to use for repositories with
321324
self-signed or untrusted certificates.
@@ -348,13 +351,22 @@ trackers, chat rooms, and mailing lists is expected to follow the
348351
.. _`publishing`: https://packaging.python.org/tutorials/distributing-packages/
349352
.. _`PyPI`: https://pypi.org
350353
.. _`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
352361
.. _`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
354364
.. _`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
356367
.. _`PyPA Code of Conduct`: https://www.pypa.io/en/latest/code-of-conduct/
357368
.. _`Warehouse`: https://github.com/pypa/warehouse
358369
.. _`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
360372
.. _`no longer supported`: https://github.com/pypa/warehouse/issues/1627

0 commit comments

Comments
 (0)