xref: /aosp_15_r20/external/bazelbuild-rules_python/python/py_executable_info.bzl (revision 60517a1edbc8ecf509223e9af94a7adec7d736b8)
1"""Provider for executable-specific information.
2
3The `PyExecutableInfo` provider contains information about an executable that
4isn't otherwise available from its public attributes or other providers.
5
6It exposes information primarily useful for consumers to package the executable,
7or derive a new executable from the base binary.
8"""
9
10load("//python/private:py_executable_info.bzl", _PyExecutableInfo = "PyExecutableInfo")
11
12PyExecutableInfo = _PyExecutableInfo
13