skbuild.utils package¶
This module defines functions generally useful in scikit-build.
- class skbuild.utils.CommonLog(*args, **kwargs)[source]¶
Bases:
Protocol
Protocol for loggers with an info method.
- class skbuild.utils.Distribution(script_name: str)[source]¶
Bases:
NamedTuple
Distribution stand-in.
- script_name: str¶
Alias for field number 0
- class skbuild.utils.PythonModuleFinder(packages: Sequence[str], package_dir: Mapping[str, str], py_modules: Sequence[str], alternative_build_base: str | None = None)[source]¶
Bases:
build_py
Convenience class to search for python modules.
This class is based on
distutils.command.build_py.build_by
and provides a specialized version offind_all_modules()
.- check_module(module: str, module_file: str) bool [source]¶
Return True if
module_file
belongs tomodule
.
- distribution: Distribution¶
- find_all_modules(project_dir: str | None = None) list[Any | tuple[str, str, str]] [source]¶
Compute the list of all modules that would be built by project located in current directory, whether they are specified one-module-at-a-time
py_modules
or by whole packagespackages
.By default, the function will search for modules in the current directory. Specifying
project_dir
parameter allow to change this.Return a list of tuples
(package, module, module_file)
.
- skbuild.utils.distribution_hide_listing(distribution: Distribution | Distribution) Iterator[bool | int] [source]¶
Given a
distribution
, this context manager temporarily sets distutils threshold to WARN if--hide-listing
argument was provided.It yields True if
--hide-listing
argument was provided.
- skbuild.utils.mkdir_p(path: str) None [source]¶
Ensure directory
path
exists. If needed, parent directories are created.
- skbuild.utils.parse_manifestin(template: str) list[str] [source]¶
This function parses template file (usually MANIFEST.in)
- class skbuild.utils.push_dir(directory: str | None = None, make_directory: bool = False)[source]¶
Bases:
ContextDecorator
Context manager to change current directory.