summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2018-01-05 08:07:21 -0500
committerGitHub <noreply@github.com>2018-01-05 08:07:21 -0500
commit647ef56421e07e8322f27a77f49ac8c7ddbc1043 (patch)
tree810d77d3855f9fe9a4a4d854615576af624fd200 /docs
parent8fe36a5710beb556a06d05f284e5ea49b4656624 (diff)
parent4ae5bc9e6fd52517fe31048b6570224fb9cbb70d (diff)
downloadpython-setuptools-git-647ef56421e07e8322f27a77f49ac8c7ddbc1043.tar.gz
Merge branch 'master' into master
Diffstat (limited to 'docs')
-rw-r--r--docs/setuptools.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/setuptools.txt b/docs/setuptools.txt
index c2822c4f..bea80181 100644
--- a/docs/setuptools.txt
+++ b/docs/setuptools.txt
@@ -145,6 +145,11 @@ dependencies, and perhaps some data files and scripts::
license="PSF",
keywords="hello world example examples",
url="http://example.com/HelloWorld/", # project home page, if any
+ project_urls={
+ "Bug Tracker": "https://bugs.example.com/HelloWorld/",
+ "Documentation": "https://docs.example.com/HelloWorld/",
+ "Source Code": "https://code.example.com/HelloWorld/",
+ }
# could also include long_description, download_url, classifiers, etc.
)
@@ -408,6 +413,11 @@ unless you need the associated ``setuptools`` feature.
A list of modules to search for additional fixers to be used during
the 2to3 conversion. See :doc:`python3` for more details.
+``project_urls``
+ An arbitrary map of URL names to hyperlinks, allowing more extensible
+ documentation of where various resources can be found than the simple
+ ``url`` and ``download_url`` options provide.
+
Using ``find_packages()``
-------------------------
@@ -2406,6 +2416,7 @@ name str
version attr:, str
url home-page str
download_url download-url str
+project_urls dict
author str
author_email author-email str
maintainer str