aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/config.py
diff options
context:
space:
mode:
authorMarcel Bargull <marcel.bargull@udo.edu>2017-04-07 13:42:51 +0200
committerMarcel Bargull <marcel.bargull@udo.edu>2017-04-07 13:44:35 +0200
commitabaf7c4dd76c56eb509f6a5f6caa2f8e886801b6 (patch)
tree89402fe4a6547efe8cb341883ea9f8a25305d45b /setuptools/config.py
parentbdbe0776c19646e703bd0b89ad3f33e6797256a7 (diff)
downloadexternal_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.py1
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):