aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-07-12 23:22:32 +0000
committerPJ Eby <distutils-sig@python.org>2005-07-12 23:22:32 +0000
commitf09fb93d9562fa19bb9d5c7253548a32868fd46b (patch)
treed5be719972974f7a9b31b63485b28a1738d89a0a /setup.py
parent653e048db21c8590677c65272925e0a91338b500 (diff)
downloadexternal_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-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 84f1d346..342a0c2f 100755
--- a/setup.py
+++ b/setup.py
@@ -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 :(