diff options
author | scoder <none@none> | 2006-03-30 21:25:15 +0200 |
---|---|---|
committer | scoder <none@none> | 2006-03-30 21:25:15 +0200 |
commit | ca25c4717d869f43e65e18e13ef038a2ff7408aa (patch) | |
tree | 85c5ec7263f0b2a73a53036452ae27146d260d09 /setup.py | |
parent | c919d50a0e023621b560d900ae37a00e5a69cd4d (diff) | |
download | python-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.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |