diff options
author | PJ Eby <distutils-sig@python.org> | 2005-07-12 23:22:32 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-07-12 23:22:32 +0000 |
commit | f09fb93d9562fa19bb9d5c7253548a32868fd46b (patch) | |
tree | d5be719972974f7a9b31b63485b28a1738d89a0a /setup.py | |
parent | 653e048db21c8590677c65272925e0a91338b500 (diff) | |
download | external_python_setuptools-f09fb93d9562fa19bb9d5c7253548a32868fd46b.tar.gz external_python_setuptools-f09fb93d9562fa19bb9d5c7253548a32868fd46b.tar.bz2 external_python_setuptools-f09fb93d9562fa19bb9d5c7253548a32868fd46b.zip |
Fixed not being able to use python -m easy_install.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041122
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -35,7 +35,7 @@ setup( packages = find_packages(), py_modules = ['pkg_resources', 'easy_install'], scripts = ['easy_install.py'], - zip_safe = True, + zip_safe = False, # We want 'python -m easy_install' to work :( |