From 0bdf00ddd7514b988d3684da64a8194e495374ac Mon Sep 17 00:00:00 2001 From: Max R Date: Fri, 12 Jun 2026 07:14:12 -0400 Subject: [PATCH] Scope package-data: py.typed to root, SQL to ddl subpackage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit More explicit than `"*" = ["*.sql"]` — SQL files only live in the ddl subpackage. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9374eee..f328d2f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -78,8 +78,8 @@ extend-select = [ ] [tool.setuptools.package-data] -"*" = ["*.sql"] sqlite_export_for_ynab = ["py.typed"] +"sqlite_export_for_ynab.ddl" = ["*.sql"] [tool.setuptools.packages] find = {}