From d44b566879c877ea2e4dc2895828731b89d213fa Mon Sep 17 00:00:00 2001 From: Patrick Arminio Date: Wed, 31 Dec 2025 16:10:16 +0100 Subject: [PATCH 1/2] Include HTML templates in package data Add templates/*.html to setuptools package-data so the index.html template is included when the package is built. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index eef4276..73ea961 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,4 +25,4 @@ dev = [ ] [tool.setuptools.package-data] -wooper_dev = ["quickshell.lock.json"] +wooper_dev = ["quickshell.lock.json", "templates/*.html"] From b46ba42e5a0f01a53f9c8c8346b7b57f2a815586 Mon Sep 17 00:00:00 2001 From: Patrick Arminio Date: Wed, 31 Dec 2025 16:14:16 +0100 Subject: [PATCH 2/2] 0.3.1 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 73ea961..fd904df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "wooper-dev" -version = "0.3.0" +version = "0.3.1" description = "A nix thing" readme = "README.md" requires-python = ">=3.14"