From: zooko Date: Wed, 12 Sep 2007 23:46:43 +0000 (+0530) Subject: zfec: install unzipped by default (can be overridden by easy_install's --zip-ok option) X-Git-Url: https://git.rkrishnan.org/listings/pb3calculator.py?a=commitdiff_plain;h=ba3d0b45f95f95109a37a83db99bdadc82f91cab;p=tahoe-lafs%2Fzfec.git zfec: install unzipped by default (can be overridden by easy_install's --zip-ok option) darcs-hash:e1ae764768a909b1774637c4d13b07b3bca1dcb6 --- diff --git a/zfec/setup.py b/zfec/setup.py index f727bfb..22fdb1e 100755 --- a/zfec/setup.py +++ b/zfec/setup.py @@ -114,4 +114,5 @@ setup(name='zfec', entry_points = { 'console_scripts': [ 'zfec = zfec.cmdline_zfec:main', 'zunfec = zfec.cmdline_zunfec:main' ] }, ext_modules=[Extension('_fec', ['zfec/fec.c', 'zfec/_fecmodule.c',], extra_link_args=extra_link_args, extra_compile_args=extra_compile_args, undef_macros=undef_macros),], test_suite="zfec.test", + zip_safe=False, # I prefer unzipped for easier access. )