This is actually useful because if for example you invoke "easy_install
~/some/path/setup.py", then the CWD will be ~/some/path when the first part of
setup.py is evaluated, but will change to something else later, so the
misc/dependencies will not be found unless the CWD is prepended. ***END OF
darcs-hash:
68fcb948a6ec9414283868861cfeaa080c6525a8
import os, re, sys
-miscdeps=os.path.join('misc', 'dependencies')
+miscdeps=os.path.join(os.getcwd(), 'misc', 'dependencies')
try:
from ez_setup import use_setuptools