summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/core.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2003-02-19 14:16:01 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2003-02-19 14:16:01 (GMT)
commit188d85f475ff611ca09c1355610185f68e7236d3 (patch)
tree047bcd96e934e1c509d008951dbb289e76911b46 /Lib/distutils/core.py
parent23c98c5f47f976edd37eec5efe09fd3847e464cf (diff)
downloadcpython-188d85f475ff611ca09c1355610185f68e7236d3.zip
cpython-188d85f475ff611ca09c1355610185f68e7236d3.tar.gz
cpython-188d85f475ff611ca09c1355610185f68e7236d3.tar.bz2
[Patch #683939] Add download_url field to metadata
Diffstat (limited to 'Lib/distutils/core.py')
-rw-r--r--Lib/distutils/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/core.py b/Lib/distutils/core.py
index 29fbc5c..a463272 100644
--- a/Lib/distutils/core.py
+++ b/Lib/distutils/core.py
@@ -47,7 +47,7 @@ setup_keywords = ('distclass', 'script_name', 'script_args', 'options',
'name', 'version', 'author', 'author_email',
'maintainer', 'maintainer_email', 'url', 'license',
'description', 'long_description', 'keywords',
- 'platforms', 'classifiers')
+ 'platforms', 'classifiers', 'download_url')
# Legal keyword arguments for the Extension constructor
extension_keywords = ('name', 'sources', 'include_dirs',