From 950f05a62f2e98a5c3e8c192501c3d3492cf46f5 Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Thu, 5 Mar 2026 15:07:10 -0700 Subject: [PATCH] Slim sdist from 182MB to 100KB -- exclude docs/audio from source distribution --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 05c202b..9f8fa01 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "mcltspice" -version = "2026.03.05" +version = "2026.03.05.1" description = "MCP server for LTspice circuit simulation automation" readme = "README.md" requires-python = ">=3.11" @@ -45,6 +45,9 @@ Repository = "https://git.supported.systems/MCP/mcltspice" requires = ["hatchling"] build-backend = "hatchling.build" +[tool.hatch.build.targets.sdist] +include = ["src/mcltspice", "pyproject.toml", "README.md", "LICENSE"] + [tool.hatch.build.targets.wheel] packages = ["src/mcltspice"]