diff --git a/fern/products/sdks/overview/python/configuration.mdx b/fern/products/sdks/overview/python/configuration.mdx index e60ade2ff..d85a67b96 100644 --- a/fern/products/sdks/overview/python/configuration.mdx +++ b/fern/products/sdks/overview/python/configuration.mdx @@ -133,7 +133,18 @@ groups: -Path to a custom `pyproject.toml` template file to use instead of the default generated one. +Allow specifying arbitrary configuration to your packages `pyproject.toml` by adding a `pyproject_toml` block to your configuration + whatever you include in this block will be added as-is to the `pyproject.toml` file. The config, as an example is: + ```yaml + config: + pyproject_toml: | + [tool.covcheck.group.unit.coverage] + branch = 26.0 + line = 62.0 + [tool.covcheck.group.service.coverage] + branch = 30.0 + line = 67.0 + ```