summaryrefslogtreecommitdiff
path: root/setuptools/command/easy_install.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-xsetuptools/command/easy_install.py47
1 files changed, 44 insertions, 3 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
index 29558d71..88655610 100755
--- a/setuptools/command/easy_install.py
+++ b/setuptools/command/easy_install.py
@@ -1393,9 +1393,19 @@ class PthDistributions(Environment):
def make_relative(self,path):
- if normalize_path(os.path.dirname(path))==self.basedir:
- return os.path.join(os.curdir, os.path.basename(path))
- return path
+ npath, last = os.path.split(normalize_path(path))
+ baselen = len(self.basedir)
+ parts = [last]
+ sep = os.altsep=='/' and '/' or os.sep
+ while len(npath)>=baselen:
+ if npath==self.basedir:
+ parts.append(os.curdir)
+ parts.reverse()
+ return sep.join(parts)
+ npath, last = os.path.split(npath)
+ parts.append(last)
+ else:
+ return path
def get_script_header(script_text, executable=sys_executable):
@@ -1420,6 +1430,9 @@ def get_script_header(script_text, executable=sys_executable):
hdr = "#!%(executable)s%(options)s\n" % locals()
return hdr
+
+
+
def auto_chmod(func, arg, exc):
if func is os.remove and os.name=='nt':
os.chmod(arg, stat.S_IWRITE)
@@ -1452,6 +1465,15 @@ def is_python(text, filename='<string>'):
else:
return True
+
+
+
+
+
+
+
+
+
def is_python_script(script_text, filename):
"""Is this text, as a whole, a Python script? (as opposed to shell/bat/etc.
"""
@@ -1474,6 +1496,25 @@ def is_python_script(script_text, filename):
return False # Not any Python I can recognize
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
def get_script_args(dist, executable=sys_executable):
"""Yield write_script() argument tuples for a distribution's entrypoints"""
spec = str(dist.as_requirement())