python - How to get setuptools to use a relative path in easy-install.pth when doing "setup.py develop" -
i'm installing python egg using setuptools "python setup.py develop" command. it's important install paths relative. see can do:
python setup.py develop --egg-path ../../../../my_directory
and .egg-link file uses relative path. however, path added easy-install.pth still absolute path. how make path in easy-install.pth file relative path?
if sourcecode in subdirectory of installation directory, made relative automatically.
why need relative, anyway?
Comments
Post a Comment