Searched refs:egg_path (Results 1 – 6 of 6) sorted by relevance
/external/python/setuptools/setuptools/command/ |
D | 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): argument 99 os.path.join(install_dir, egg_path, path_to_setup) 126 self.egg_path = build_path [all …]
|
D | easy_install.py | 886 def egg_distribution(self, egg_path): argument 887 if os.path.isdir(egg_path): 888 metadata = PathMetadata(egg_path, os.path.join(egg_path, 891 metadata = EggMetadata(zipimport.zipimporter(egg_path)) 892 return Distribution.from_filename(egg_path, metadata=metadata) 894 def install_egg(self, egg_path, tmpdir): argument 897 os.path.basename(egg_path), 903 dist = self.egg_distribution(egg_path) 904 if not samefile(egg_path, destination): 915 if os.path.isdir(egg_path): [all …]
|
/external/python/setuptools/setuptools/tests/ |
D | 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/autotest/utils/ |
D | 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): argument 384 status = system("unzip -q -o -d '%s' '%s'" % (install_dir, egg_path)) 386 logging.error('unzip of %s failed', egg_path) 621 egg_path = self._build_egg_using_setup_py() [all …]
|
/external/python/setuptools/setuptools/ |
D | namespaces.py | 104 return repr(str(self.egg_path))
|
D | package_index.py | 419 egg_path, setup_path = lines 421 for dist in find_distributions(os.path.join(path, egg_path)):
|