From a173070f4aa4766538874ca1af32fabc994148f6 Mon Sep 17 00:00:00 2001 From: Hampus Sunner Date: Tue, 7 Oct 2025 08:49:19 +0200 Subject: [PATCH] Fix #24: Include config files in wheel distribution - Included .gitigored config files (*.conf and *.yml in Python source dir) to be explicitly included in the wheel --- pyproject.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 5e34f0d..6dc246f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -71,3 +71,10 @@ version-file = "simple_dhcp_server/_version.py" [tool.hatch.metadata] allow-direct-references = true + +[tool.hatch.build.targets.wheel] +packages = ["simple_dhcp_server"] +artifacts = [ + "simple_dhcp_server/*.yml", + "simple_dhcp_server/*.conf", +]