HomeSort by relevance Sort by last modified time
    Searched refs:egg_path (Results 1 - 6 of 6) sorted by null

  /external/python/setuptools/setuptools/command/
develop.py 41 self.egg_path = None
63 if self.egg_path is None:
64 self.egg_path = os.path.abspath(ei.egg_base)
67 egg_path = normalize_path(os.path.join(self.install_dir,
68 self.egg_path))
69 if egg_path != target:
85 self.egg_path,
89 def _resolve_setup_path(egg_base, install_dir, egg_path):
93 setup path from $install_dir/$egg_path.
99 os.path.join(install_dir, egg_path, path_to_setup
    [all...]
easy_install.py     [all...]
  /external/python/setuptools/setuptools/tests/
test_wheel.py 131 egg_path = os.path.join(install_dir, w.egg_name())
132 w.install_as_egg(egg_path)
138 metadata = PathMetadata(egg_path, os.path.join(egg_path, 'EGG-INFO'))
139 dist = Distribution.from_filename(egg_path, metadata=metadata)
  /external/python/setuptools/setuptools/
namespaces.py 104 return repr(str(self.egg_path))
package_index.py 419 egg_path, setup_path = lines
421 for dist in find_distributions(os.path.join(path, egg_path)):
    [all...]
  /external/autotest/utils/
external_packages.py 252 egg_path = self._build_egg_using_setup_py(setup_py='setup.py')
253 if not egg_path:
255 return self._install_from_egg(install_dir, egg_path)
260 egg_path = self._build_egg_using_setup_py(setup_py='setupegg.py')
261 if not egg_path:
263 return self._install_from_egg(install_dir, egg_path)
376 def _install_from_egg(self, install_dir, egg_path):
382 @param egg_path - The pathname of the egg file.
384 status = system("unzip -q -o -d '%s' '%s'" % (install_dir, egg_path))
386 logging.error('unzip of %s failed', egg_path)
    [all...]

Completed in 85 milliseconds