From 22e0d7ea7fe7be69ab1c51f16fdd588f90dacadc Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Mon, 2 Feb 2026 16:38:30 +0000 Subject: [PATCH] fix: properly include templates in package distribution --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e834a91..a6a342a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,9 +41,10 @@ gitignore = "gitignore_generator.cli:main" [tool.setuptools.packages.find] where = ["."] +include = ["gitignore_generator*"] [tool.setuptools.package-data] -gitignore_generator = ["templates/**/*"] +gitignore_generator = ["templates/*.json", "templates/languages/*.gitignore", "templates/ides/*.gitignore"] [tool.pytest.ini_options] testpaths = ["tests"]