From f03a8811a7d50687aea5ddbdd203bcb23828f627 Mon Sep 17 00:00:00 2001 From: Jason Frey Date: Mon, 18 May 2026 18:06:21 -0400 Subject: [PATCH] chore: Exclude kiota-dom-export.txt from builds kiota-dom-export.txt is not needed at runtime and is a very large file (~32MB), contributing to a bloated package. --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 86fdae293f..2d796f1a30 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,6 +44,9 @@ documentation = "https://github.com/microsoftgraph/msgraph-sdk-python/docs" [tool.flit.module] name = "msgraph" +[tool.flit.sdist] +exclude = ["msgraph/generated/kiota-dom-export.txt"] + [tool.mypy] warn_unused_configs = true files = "msgraph"