diff options
| author | Marcel Bargull <marcel.bargull@udo.edu> | 2017-04-07 13:42:51 +0200 |
|---|---|---|
| committer | Marcel Bargull <marcel.bargull@udo.edu> | 2017-04-07 13:44:35 +0200 |
| commit | abaf7c4dd76c56eb509f6a5f6caa2f8e886801b6 (patch) | |
| tree | 89402fe4a6547efe8cb341883ea9f8a25305d45b /setuptools/config.py | |
| parent | bdbe0776c19646e703bd0b89ad3f33e6797256a7 (diff) | |
| download | external_python_setuptools-abaf7c4dd76c56eb509f6a5f6caa2f8e886801b6.tar.gz external_python_setuptools-abaf7c4dd76c56eb509f6a5f6caa2f8e886801b6.tar.bz2 external_python_setuptools-abaf7c4dd76c56eb509f6a5f6caa2f8e886801b6.zip | |
Fixes #999: support python_requires, py_modules in configuration files
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 39a01f88..252f2deb 100644 --- a/setuptools/config.py +++ b/setuptools/config.py @@ -462,6 +462,7 @@ class ConfigOptionsHandler(ConfigHandler): 'tests_require': parse_list_semicolon, 'packages': self._parse_packages, 'entry_points': self._parse_file, + 'py_modules': parse_list, } def _parse_packages(self, value): |
