Skip to content

Commit 3cadeb6

Browse files
committed
Change "Bug Tracker" to Issues (closes #1183)
1 parent cc02909 commit 3cadeb6

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

source/guides/writing-pyproject-toml.rst

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,18 +274,22 @@ A list of PyPI classifiers that apply to your project. Check the
274274
--------
275275

276276
A list of URLs associated with your project, displayed on the left
277-
sidebar of your PyPI project page. If the key contains spaces, don't
278-
forget to quote it.
277+
sidebar of your PyPI project page.
279278

280279
.. code-block:: toml
281280
282281
[project.urls]
283282
Homepage = "https://example.com"
284283
Documentation = "https://readthedocs.org"
285284
Repository = "https://github.com/me/spam.git"
286-
"Bug Tracker" = "https://github.com/me/spam/issues"
285+
Issues = "https://github.com/me/spam/issues"
287286
Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
288287
288+
Note that if the key contains spaces, it needs to be quoted, e.g.,
289+
``Website = "https://example.com"`` but
290+
``"Official Website" = "https://example.com"``.
291+
292+
289293

290294
Advanced plugins
291295
================

0 commit comments

Comments
 (0)