Current Path: > > opt > hc_python > lib64 > python3.12 > site-packages > pip > _internal > operations > > build
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
__init__.py | File | 0 bytes | May 23 2025 10:34:25. | |
build_tracker.py | File | 4774 bytes | May 23 2025 10:34:25. | |
metadata.py | File | 1421 bytes | May 23 2025 10:34:25. | |
metadata_editable.py | File | 1509 bytes | May 23 2025 10:34:25. | |
metadata_legacy.py | File | 2189 bytes | May 23 2025 10:34:25. | |
wheel.py | File | 1075 bytes | May 23 2025 10:34:25. | |
wheel_editable.py | File | 1417 bytes | May 23 2025 10:34:25. | |
wheel_legacy.py | File | 3620 bytes | May 23 2025 10:34:25. |
"""Metadata generation logic for source distributions.""" import os from pip._vendor.pyproject_hooks import BuildBackendHookCaller from pip._internal.build_env import BuildEnvironment from pip._internal.exceptions import ( InstallationSubprocessError, MetadataGenerationFailed, ) from pip._internal.utils.subprocess import runner_with_spinner_message from pip._internal.utils.temp_dir import TempDirectory def generate_metadata( build_env: BuildEnvironment, backend: BuildBackendHookCaller, details: str ) -> 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 BuildBackendHookCaller 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 metadata (pyproject.toml)") with backend.subprocess_runner(runner): try: distinfo_dir = backend.prepare_metadata_for_build_wheel(metadata_dir) except InstallationSubprocessError as error: raise MetadataGenerationFailed(package_details=details) from error return os.path.join(metadata_dir, distinfo_dir)
SILENT KILLER Tool