fix: properly include templates in package distribution
Some checks failed
CI / test (3.10) (push) Has been cancelled
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / lint (push) Has been cancelled

This commit is contained in:
2026-02-02 16:38:30 +00:00
parent 482afd7b49
commit 22e0d7ea7f

View File

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