"""Metadata generation logic for source distributions. """ import os from pip._internal.utils.subprocess import runner_with_spinner_message from pip._internal.utils.temp_dir import TempDirectory from pip._internal.utils.typing import MYPY_CHECK_RUNNING if MYPY_CHECK_RUNNING: from pip._internal.build_env import BuildEnvironment from pip._vendor.pep517.wrappers import Pep517HookCaller def generate_metadata(build_env, backend): # type: (BuildEnvironment, Pep517HookCaller) -> str """Generate metadata using mechanisms described in PEP 517. Returns the generated metadata directory. """ metadata_tmpdir = TempDirectory( kind="modern-metadata", globally_managed=True ) metadata_dir = metadata_tmpdir.path with build_env: # Note that Pep517HookCaller implements a fallback for # prepare_metadata_for_build_wheel, so we don't have to # consider the possibility that this hook doesn't exist. runner = runner_with_spinner_message("Preparing wheel metadata") with backend.subprocess_runner(runner): distinfo_dir = backend.prepare_metadata_for_build_wheel( metadata_dir ) return os.path.join(metadata_dir, distinfo_dir)
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
__pycache__ | Folder | 0755 |
|
|
.__init__.pyo.40009 | File | 175 B | 0644 |
|
.metadata.pyo.40009 | File | 1.37 KB | 0644 |
|
.metadata_legacy.pyo.40009 | File | 2.24 KB | 0644 |
|
.wheel_legacy.pyo.40009 | File | 3.17 KB | 0644 |
|
__init__.py | File | 0 B | 0644 |
|
__init__.pyc | File | 175 B | 0644 |
|
__init__.pyo | File | 175 B | 0644 |
|
metadata.py | File | 1.22 KB | 0644 |
|
metadata.pyc | File | 1.37 KB | 0644 |
|
metadata.pyo | File | 1.37 KB | 0644 |
|
metadata_legacy.py | File | 1.96 KB | 0644 |
|
metadata_legacy.pyc | File | 2.24 KB | 0644 |
|
metadata_legacy.pyo | File | 2.24 KB | 0644 |
|
wheel.py | File | 1.43 KB | 0644 |
|
wheel.pyc | File | 1.55 KB | 0644 |
|
wheel.pyo | File | 1.51 KB | 0644 |
|
wheel_legacy.py | File | 3.28 KB | 0644 |
|
wheel_legacy.pyc | File | 3.17 KB | 0644 |
|
wheel_legacy.pyo | File | 3.17 KB | 0644 |
|