From 9ab1455dbbe74e7c41f5a33de7ec947f140da90b Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 18:28:58 +0000 Subject: [PATCH] fix: resolve CI/CD package filtering issues - Fix pyproject.toml package include/exclude to only include config_auditor package - Add MANIFEST.in to exclude unrelated directories from sdist distribution --- app/pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/pyproject.toml b/app/pyproject.toml index ee31249..f5e4d84 100644 --- a/app/pyproject.toml +++ b/app/pyproject.toml @@ -49,8 +49,8 @@ dev = [ [tool.setuptools.packages.find] where = ["."] -include = ["config_auditor*"] -exclude = ["tests*", "fixtures*"] +include = ["config_auditor"] +exclude = ["tests", "fixtures"] [tool.pytest.ini_options] testpaths = ["tests"]