diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-11-26 21:24:11 -0600 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-11-26 21:27:44 -0600 |
commit | de11b125f7a94a13aff478482e3a83a30176f7b7 (patch) | |
tree | 263437314ea734cafaa46d71ff0d0b95598d4e5c /setup.py | |
parent | 175171116dc40af5274c88ec461dd2e94c1dabc5 (diff) | |
download | python-setuptools-git-de11b125f7a94a13aff478482e3a83a30176f7b7.tar.gz |
Now by default include the windows script launchers. Fixes #861 by addressing the underlying cause.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -54,8 +54,8 @@ package_data = dict( ) force_windows_specific_files = ( - os.environ.get("SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES") - not in (None, "", "0") + os.environ.get("SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES", "1").lower() + not in ("", "0", "false", "no") ) include_windows_files = ( |