From a986348168db95d5d9719087856e01540d542f43 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Sat, 21 Feb 2026 22:57:25 +0000 Subject: [PATCH] add python version classifiers patch bump --- pyproject.toml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 71de3b8..5a05055 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,21 @@ [project] name = "lottery-tui" -version = "0.2.2" +version = "0.2.3" description = "A terminal user interface for lottery games." authors = [{ name = "onyx-and-iris", email = "code@onyxandiris.online" }] dependencies = ["textual>=8.0.0"] requires-python = ">=3.10" readme = "README.md" license = { text = "MIT" } +classifiers = [ + "Development Status :: 4 - Beta", + "Programming Language :: Python", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: Implementation :: CPython", + "Programming Language :: Python :: Implementation :: PyPy", +] [project.scripts] lottery-tui = "lottery_tui.tui:main"