diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2003-02-19 14:16:01 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2003-02-19 14:16:01 (GMT) |
commit | 188d85f475ff611ca09c1355610185f68e7236d3 (patch) | |
tree | 047bcd96e934e1c509d008951dbb289e76911b46 /Lib/distutils/core.py | |
parent | 23c98c5f47f976edd37eec5efe09fd3847e464cf (diff) | |
download | cpython-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.py | 2 |
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', |