mirror of
https://github.com/onyx-and-iris/lottery-tui.git
synced 2026-04-20 02:13:31 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a986348168 | |||
| bccf1b1ad2 | |||
| 3ecfb84a87 |
@@ -1,6 +1,6 @@
|
||||
# Lottery TUI
|
||||
|
||||
[](https://pdm.fming.dev)
|
||||
[](https://pdm-project.org)
|
||||
[](https://github.com/astral-sh/ruff)
|
||||
[](https://pypi.org/project/lottery-tui)
|
||||
[](https://pypi.org/project/lottery-tui)
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -103,7 +103,7 @@ class Thunderball(Lottery):
|
||||
and 1 "Thunderball" number from a separate pool of 1 to 14, also without replacement.
|
||||
"""
|
||||
|
||||
POSSIBLE_NUMBERS = range(1, 40) # Thunderball numbers range from 1 to 39
|
||||
POSSIBLE_NUMBERS = range(1, 40)
|
||||
|
||||
def draw(self) -> Result:
|
||||
"""Perform a Thunderball draw."""
|
||||
|
||||
Reference in New Issue
Block a user