diff options
author | Fred Drake <fdrake@acm.org> | 2005-03-20 22:19:47 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2005-03-20 22:19:47 (GMT) |
commit | db7b0027dcebca13d193db09d7f266d871fe67b9 (patch) | |
tree | f129701cb790d19559b49ddfb4a58e2c60217a82 /Lib/distutils/core.py | |
parent | 54398d6afb680bde217cc9529b2cd88485bec3d8 (diff) | |
download | cpython-db7b0027dcebca13d193db09d7f266d871fe67b9.zip cpython-db7b0027dcebca13d193db09d7f266d871fe67b9.tar.gz cpython-db7b0027dcebca13d193db09d7f266d871fe67b9.tar.bz2 |
PEP 314 implementation (client side):
added support for the provides, requires, and obsoletes metadata fields
Diffstat (limited to 'Lib/distutils/core.py')
-rw-r--r-- | Lib/distutils/core.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/distutils/core.py b/Lib/distutils/core.py index eba9455..c9c6f03 100644 --- a/Lib/distutils/core.py +++ b/Lib/distutils/core.py @@ -47,7 +47,9 @@ setup_keywords = ('distclass', 'script_name', 'script_args', 'options', 'name', 'version', 'author', 'author_email', 'maintainer', 'maintainer_email', 'url', 'license', 'description', 'long_description', 'keywords', - 'platforms', 'classifiers', 'download_url',) + 'platforms', 'classifiers', 'download_url', + 'requires', 'provides', 'obsoletes', + ) # Legal keyword arguments for the Extension constructor extension_keywords = ('name', 'sources', 'include_dirs', |