From 7f302760ef559825d16956f2752b0106275de4a5 Mon Sep 17 00:00:00 2001 From: Shay Date: Wed, 13 May 2026 20:58:01 -0700 Subject: [PATCH] Fix setuptools flat-layout package discovery --- pyproject.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index a4d2a665..f8731342 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,22 @@ dev = [ [project.scripts] core = "core.cli:main" +[tool.setuptools.packages.find] +where = ["."] +include = [ + "algebra*", + "chat*", + "core*", + "field*", + "generate*", + "ingest*", + "language_packs*", + "persona*", + "session*", + "vault*", + "vocab*", +] + [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"]