projects
/
tahoe-lafs
/
zfec.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
80ce622
)
zfec: install unzipped by default (can be overridden by easy_install's --zip-ok option)
author
zooko
<zooko@zooko.com>
Wed, 12 Sep 2007 23:46:43 +0000
(
05:16
+0530)
committer
zooko
<zooko@zooko.com>
Wed, 12 Sep 2007 23:46:43 +0000
(
05:16
+0530)
darcs-hash:
e1ae764768a909b1774637c4d13b07b3bca1dcb6
zfec/setup.py
patch
|
blob
|
history
diff --git
a/zfec/setup.py
b/zfec/setup.py
index f727bfb2924ea78c88ed68ef35439201f417a0bc..22fdb1e8ea3d4844cb569675700e9f1cf18cf725 100755
(executable)
--- 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.
)