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