MCPcopy Create free account
hub / github.com/lief-project/LIEF / build_editable

Function build_editable

api/python/backend/setup.py:161–170  ·  view source on GitHub ↗
(
    wheel_directory: str,
    config_settings: Optional[dict[str, Union[str, List[str]]]] = None,
    metadata_directory: Optional[str] = None,
)

Source from the content-addressed store, hash-verified

159 return _impl(metadata_directory, config_settings)
160
161def build_editable(
162 wheel_directory: str,
163 config_settings: Optional[dict[str, Union[str, List[str]]]] = None,
164 metadata_directory: Optional[str] = None,
165) -> str:
166 from scikit_build_core.build import build_editable as _impl
167
168 config_settings = _get_hooked_config(is_editable=True)
169 _fix_env()
170 return _impl(wheel_directory, config_settings, metadata_directory)
171
172def build_sdist(
173 sdist_directory: str,

Callers

nothing calls this directly

Calls 2

_get_hooked_configFunction · 0.85
_fix_envFunction · 0.85

Tested by

no test coverage detected