From 914db838d71bdd18d2b8530744cd5cec93f6ad1d Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Fri, 6 Feb 2026 20:55:51 -0700 Subject: [PATCH] Exclude docs-site build artifacts from sdist --- pyproject.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 8dd9793..9dea727 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,6 +48,15 @@ Repository = "https://git.supported.systems/MCP/mcbluetooth" [tool.hatch.build.targets.wheel] packages = ["src/mcbluetooth"] +[tool.hatch.build.targets.sdist] +exclude = [ + "docs-site/node_modules", + "docs-site/.astro", + "docs-site/dist", + ".claude", + "CLAUDE.md", +] + [tool.ruff] line-length = 100 target-version = "py311"