From 2322abe8dd30d99a859fcb473add14d7e29b0fed Mon Sep 17 00:00:00 2001 From: caoimhinr Date: Mon, 25 May 2026 20:28:54 +0200 Subject: [PATCH] fix: include templates/ and static/ in installed package Setuptools was omitting non-Python files; add package-data glob so templates and static assets are present after pip install. Co-Authored-By: Claude Sonnet 4.6 --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 4212349..c7d171f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,3 +25,6 @@ dev = ["pytest>=8.0", "pytest-asyncio>=0.24", "aiosqlite>=0.20"] [tool.setuptools.packages.find] where = ["."] include = ["corvid*"] + +[tool.setuptools.package-data] +corvid = ["templates/**", "static/**"]