From a0e3328555087d2ac9f2e70d48e20a588453527b Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Mon, 5 Jun 2023 16:39:08 -0700 Subject: [PATCH] Fix template data files not being included --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 38888d2..ea6d3c3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,4 +6,7 @@ version = "0.0.1" intake = "intake.cli:main" [tool.setuptools] -packages = ["intake"] +packages = ["intake", "intake.templates"] + +[tool.setuptools.package-data] +"intake.templates" = ["*.jinja2"]