From 723e18903e636707b3e66b1f29142ec788119e7b Mon Sep 17 00:00:00 2001 From: Carl George Date: Mon, 20 Apr 2026 22:50:50 -0500 Subject: [PATCH] Include all license files in sdist and wheel By default hatchling only includes the COPYING file. Signed-off-by: Carl George --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index a14892b..5dc054a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,6 +26,11 @@ classifiers = [ ] authors = [{name = "Robert Collins", email = "robertc@robertcollins.net"}] license = {text = "Apache-2.0 or BSD"} +license-files = [ + "COPYING", + "Apache-2.0", + "BSD", +] requires-python = ">=3.10" dynamic = ["version"]