fix: resolve CI/CD package filtering issues
Some checks failed
CI / test (push) Failing after 11s
CI / build (push) Has been skipped

- Fix pyproject.toml package include/exclude to only include config_auditor package
- Add MANIFEST.in to exclude unrelated directories from sdist distribution
This commit is contained in:
2026-01-30 18:28:58 +00:00
parent 209c628c5f
commit 9ab1455dbb

View File

@@ -49,8 +49,8 @@ dev = [
[tool.setuptools.packages.find] [tool.setuptools.packages.find]
where = ["."] where = ["."]
include = ["config_auditor*"] include = ["config_auditor"]
exclude = ["tests*", "fixtures*"] exclude = ["tests", "fixtures"]
[tool.pytest.ini_options] [tool.pytest.ini_options]
testpaths = ["tests"] testpaths = ["tests"]