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)

This commit is contained in:
Zooko O'Whielacronx 2008-01-22 13:46:47 -07:00
parent faad785859
commit c433f42337
1 changed files with 3 additions and 0 deletions

3
setup.cfg Normal file
View File

@ -0,0 +1,3 @@
[easy_install]
zip_ok=False
always_copy=True