PythonPackagingPolicy¶
When building a Python binary, there are various settings that control which
Python resources are added, where they are imported from, and other various
settings. This collection of settings is referred to as a Python Packaging
Policy. These settings are represented by the PythonPackagingPolicy type.
Attributes¶
The following sections describe the attributes available on each instance.
bytecode_optimize_level_zero¶
(bool)
Whether to add Python bytecode at optimization level 0 (the default optimization level the Python interpreter compiles bytecode for).
bytecode_optimize_level_one¶
(bool)
Whether to add Python bytecode at optimization level 1.
bytecode_optimize_level_two¶
(bool)
Whether to add Python bytecode at optimization level 2.
extension_module_filter¶
(string)
The filter to apply to determine which extension modules to add. The following values are recognized:
allEvery named extension module will be included.
minimalReturn only extension modules that are required to initialize a Python interpreter. This is a very small set and various functionality from the Python standard library will not work with this value.
no-librariesReturn only extension modules that don’t require any additional libraries.
Most common Python extension modules are included. Extension modules like
_ssl(links against OpenSSL) andzlibare not included.no-gplReturn only extension modules that do not link against GPL licensed libraries.
Not all Python distributions may annotate license info for all extensions or the libraries they link against. If license info is missing, the extension is not included because it could be GPL licensed. Similarly, the mechanism for determining whether a license is GPL is based on an explicit list of non-GPL licenses. This ensures new GPL licenses don’t slip through.
Default is all.
include_distribution_sources¶
(bool)
Whether to add source code for Python modules in the Python distribution.
Default is True.
include_distribution_resources¶
(bool)
Whether to add Python package resources for Python packages in the Python distribution.
Default is False.
include_non_distribution_sources¶
(bool)
Whether to add source code for Python modules not in the Python distribution.
include_test¶
(bool)
Whether to add Python resources related to tests.
Not all files associated with tests may be properly flagged as such. This is a best effort setting.
Default is False.
resources_location¶
(string)
The location that resources should be added to by default.
Default is in-memory.
(string or None)
The fallback location that resources should be added to if
resources_location fails.
Default is None.
preferred_extension_module_variants¶
(dict<string, string>) (readonly)
Mapping of extension module name to variant name.
This mapping defines which preferred named variant of an extension module to use. Some Python distributions offer multiple variants of the same extension module. This mapping allows defining which variant of which extension to use when choosing among them.
Keys set on this dict are not reflected in the underlying policy. To set
a key, call the set_preferred_extension_module_variant() method.
Methods¶
The following sections describe methods on PythonPackagingPolicy instances.
PythonPackagingPolicy.register_resource_callback()¶
This method registers a Starlark function to be called when resource objects
are created. The passed function receives 2 arguments: this
PythonPackagingPolicy instance and the resource (e.g.
PythonModuleSource) that was created.
The purpose of the callback is to enable Starlark configuration files to mutate resources upon creation so they can globally influence how those resources are packaged.
PythonPackagingPolicy.set_preferred_extension_module_variant()¶
This method will set a preferred Python extension module variant to
use. See the documentation for preferred_extension_module_variants
above for more.
It accepts 2 string arguments defining the extension module name
and its preferred variant.