Fix setuptools flat-layout package discovery

This commit is contained in:
Shay 2026-05-13 20:58:01 -07:00
parent 0800f8d35f
commit 7f302760ef

View file

@ -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"]