initial commit

This commit is contained in:
2026-02-21 21:06:21 +00:00
commit b28b04c603
12 changed files with 1030 additions and 0 deletions

15
pyproject.toml Normal file
View File

@@ -0,0 +1,15 @@
[project]
name = "lottery-tui"
version = "0.1.0"
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" }
[project.scripts]
lottery-tui = "lottery_tui.tui:main"
[tool.pdm]
distribution = true