From 9405b4a588150a67d68e9287d404403101530432 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Sat, 21 Feb 2026 21:41:34 +0000 Subject: [PATCH] fix the build minor bump --- pyproject.toml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b9a7c37..3865d21 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "lottery-tui" -version = "0.1.1" +version = "0.2.0" description = "A terminal user interface for lottery games." authors = [{ name = "onyx-and-iris", email = "code@onyxandiris.online" }] dependencies = ["textual>=8.0.0"] @@ -11,5 +11,13 @@ license = { text = "MIT" } [project.scripts] lottery-tui = "lottery_tui.tui:main" +[build-system] +requires = ["pdm-backend"] +build-backend = "pdm.backend" + [tool.pdm] distribution = true + +[tool.pdm.build] +package-dir = "src" +includes = ["src/**/*", "README.md", "LICENSE"]