summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorscoder <none@none>2006-03-30 21:25:15 +0200
committerscoder <none@none>2006-03-30 21:25:15 +0200
commitca25c4717d869f43e65e18e13ef038a2ff7408aa (patch)
tree85c5ec7263f0b2a73a53036452ae27146d260d09 /setup.py
parentc919d50a0e023621b560d900ae37a00e5a69cd4d (diff)
downloadpython-lxml-ca25c4717d869f43e65e18e13ef038a2ff7408aa.tar.gz
[svn r888] set zip_safe flag to False to prevent library duplication
--HG-- branch : trunk
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 0677f5ff..5424e7c6 100644
--- a/setup.py
+++ b/setup.py
@@ -11,6 +11,7 @@ version = open('version.txt').read().strip()
try:
from setuptools import setup
from setuptools.extension import Extension
+ setup_args["zip_safe"] = False
except ImportError:
from distutils.core import setup
from distutils.extension import Extension