Richard Levasseur | 36bb556 | 2024-09-01 20:42:08 -0700 | [diff] [blame] | 1 | """Provider for executable-specific information. |
| 2 | |
| 3 | The `PyExecutableInfo` provider contains information about an executable that |
| 4 | isn't otherwise available from its public attributes or other providers. |
| 5 | |
| 6 | It exposes information primarily useful for consumers to package the executable, |
| 7 | or derive a new executable from the base binary. |
| 8 | """ |
| 9 | |
| 10 | load("//python/private:py_executable_info.bzl", _PyExecutableInfo = "PyExecutableInfo") |
| 11 | |
| 12 | PyExecutableInfo = _PyExecutableInfo |