Home
last modified time | relevance | path

Searched refs:egg_path (Results 1 – 6 of 6) sorted by relevance

/external/python/setuptools/setuptools/command/
Ddevelop.py39 self.egg_path = None
61 if self.egg_path is None:
62 self.egg_path = os.path.abspath(ei.egg_base)
65 egg_path = pkg_resources.normalize_path(
66 os.path.join(self.install_dir, self.egg_path)
68 if egg_path != target:
84 self.egg_path,
88 def _resolve_setup_path(egg_base, install_dir, egg_path): argument
98 os.path.join(install_dir, egg_path, path_to_setup)
126 f.write(self.egg_path + "\n" + self.setup_path)
[all …]
Deasy_install.py906 def egg_distribution(self, egg_path): argument
907 if os.path.isdir(egg_path):
908 metadata = PathMetadata(egg_path, os.path.join(egg_path,
911 metadata = EggMetadata(zipimport.zipimporter(egg_path))
912 return Distribution.from_filename(egg_path, metadata=metadata)
915 def install_egg(self, egg_path, tmpdir): # noqa: C901 argument
918 os.path.basename(egg_path),
924 dist = self.egg_distribution(egg_path)
926 os.path.exists(destination) and os.path.samefile(egg_path, destination)
938 if os.path.isdir(egg_path):
[all …]
/external/python/setuptools/setuptools/tests/
Dtest_wheel.py137 egg_path = os.path.join(install_dir, w.egg_name())
138 w.install_as_egg(egg_path)
144 metadata = PathMetadata(egg_path, os.path.join(egg_path, 'EGG-INFO'))
145 dist = Distribution.from_filename(egg_path, metadata=metadata)
/external/autotest/utils/
Dexternal_packages.py259 egg_path = self._build_egg_using_setup_py(setup_py='setup.py')
260 if not egg_path:
262 return self._install_from_egg(install_dir, egg_path)
267 egg_path = self._build_egg_using_setup_py(setup_py='setupegg.py')
268 if not egg_path:
270 return self._install_from_egg(install_dir, egg_path)
383 def _install_from_egg(self, install_dir, egg_path): argument
391 status = system("unzip -q -o -d '%s' '%s'" % (install_dir, egg_path))
393 logging.error('unzip of %s failed', egg_path)
628 egg_path = self._build_egg_using_setup_py()
[all …]
/external/python/setuptools/setuptools/
Dnamespaces.py104 return repr(str(self.egg_path))
Dpackage_index.py407 egg_path, setup_path = lines
409 for dist in find_distributions(os.path.join(path, egg_path)):