summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJeremy Stanley <fungi@yuggoth.org>2017-12-05 17:56:10 +0000
committerJeremy Stanley <fungi@yuggoth.org>2017-12-05 17:56:10 +0000
commit7af7f8a68ea4b0f7d45a739273684832fa609935 (patch)
treec1c021993b3a2d3687e649f8dc0fb46785fb6805 /setup.py
parentdf2246449c271c07586bcecc3eaa36e9b0e94e3d (diff)
downloadpython-setuptools-git-7af7f8a68ea4b0f7d45a739273684832fa609935.tar.gz
Document project_urls setup parameter
Add an entry to the Setuptools usage documentation for the project_urls dict, and include it in the "advanced" project example. While at it, adjust the dogfooding use in Setuptools' own setup.py to use HTTPS for the Documentation URL and drop redundant entries for Bug Tracker and Source Code. Also remove a no-op attribute reassignment from egg_info.py.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index 7a05c718..19239465 100755
--- a/setup.py
+++ b/setup.py
@@ -99,9 +99,7 @@ setup_params = dict(
keywords="CPAN PyPI distutils eggs package management",
url="https://github.com/pypa/setuptools",
project_urls={
- "Bug Tracker": "https://github.com/pypa/setuptools/issues",
- "Documentation": "http://setuptools.readthedocs.io/",
- "Source Code": "https://github.com/pypa/setuptools",
+ "Documentation": "https://setuptools.readthedocs.io/",
},
src_root=None,
packages=setuptools.find_packages(exclude=['*.tests']),