From 195d0ed6769ae9b2d71c87b86602d867b2b17049 Mon Sep 17 00:00:00 2001 From: Thomas Schmelzer Date: Sat, 25 Jan 2025 15:59:25 +0400 Subject: [PATCH] Update pyproject.toml.jinja --- template/pyproject.toml.jinja | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/template/pyproject.toml.jinja b/template/pyproject.toml.jinja index df0306d..e4fe749 100644 --- a/template/pyproject.toml.jinja +++ b/template/pyproject.toml.jinja @@ -33,5 +33,12 @@ build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["src/{{project_name}}"] +[tool.hatch.build] +include = [ + "LICENSE", # Ensure the LICENSE file is included in your package + "README.md", + "src/{{ project_name }}" +] + [tool.bandit] exclude_dirs = ["tests"]