From: Zooko O'Whielacronx Date: Tue, 22 Jan 2008 20:46:47 +0000 (-0700) Subject: setup: add a setup.cfg file which instructs setuptools to install all eggs in unzippe... X-Git-Url: https://git.rkrishnan.org/tahoe_css?a=commitdiff_plain;h=c433f4233782d7a6ab1efbdc340a0b6e6b877a3e;p=tahoe-lafs%2Ftahoe-lafs.git setup: add a setup.cfg file which instructs setuptools to install all eggs in unzipped form and to always copy them into the target directory (even if they are already installed somewhere else on the path that setuptools searches, which includes the CWD) --- diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 00000000..5db42557 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,3 @@ +[easy_install] +zip_ok=False +always_copy=True