mirror of
https://github.com/onyx-and-iris/lottery-tui.git
synced 2026-02-26 02:59:10 +00:00
move the responsibility of sorting the numbers from the caller to the class initialisation. (now the string representation matches the internal state) move logging of ValueError from tui.py to lottery.py patch bump
34 lines
966 B
TOML
34 lines
966 B
TOML
[project]
|
|
name = "lottery-tui"
|
|
version = "0.2.7"
|
|
description = "A terminal user interface for lottery games."
|
|
authors = [{ name = "onyx-and-iris", email = "code@onyxandiris.online" }]
|
|
dependencies = ["textual>=8.0.0", "loguru>=0.7.3"]
|
|
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 :: 3.13",
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
|
]
|
|
|
|
[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"]
|