diff options
author | Mick Koch <mick@kochm.co> | 2019-05-20 18:25:19 -0400 |
---|---|---|
committer | Mick Koch <mick@kochm.co> | 2019-10-28 18:30:31 -0400 |
commit | 823ab9d2ec4ab89f90c0a781d872c9071b4afc13 (patch) | |
tree | 8c6e9f23a72bb970b8d01592aacaee4e71a442bb /setuptools/config.py | |
parent | 7748921de342160ca2dc9c9539562bb9c924e14c (diff) | |
download | external_python_setuptools-823ab9d2ec4ab89f90c0a781d872c9071b4afc13.tar.gz external_python_setuptools-823ab9d2ec4ab89f90c0a781d872c9071b4afc13.tar.bz2 external_python_setuptools-823ab9d2ec4ab89f90c0a781d872c9071b4afc13.zip |
Add support for `license_files` option in metadata
Diffstat (limited to 'setuptools/config.py')
-rw-r--r-- | setuptools/config.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/setuptools/config.py b/setuptools/config.py index 2d50e25e..9b9a0c45 100644 --- a/setuptools/config.py +++ b/setuptools/config.py @@ -483,6 +483,7 @@ class ConfigMetadataHandler(ConfigHandler): 'obsoletes': parse_list, 'classifiers': self._get_parser_compound(parse_file, parse_list), 'license': exclude_files_parser('license'), + 'license_files': parse_list, 'description': parse_file, 'long_description': parse_file, 'version': self._parse_version, |