1
0
mirror of https://github.com/tzuwei-huang/random-number-generator.git synced 2026-08-24 14:10:29 +09:00
random-number-generator/pyproject.toml
Tzu-Wei, Huang 24d3f49101
feat: add pure random function (#1)
* - Add "Pure Random" mode with repeat detection feature
- Improve UI layout and styling for compact presentation screens
- Introduce auto cleanup of existing processes on port 80 before startup
- Update translations and language toggle functionalities
- Remove unused test dependencies
- Add Apache 2.0 license and update relevant metadata

* fix: Update number pooling logic and adjust test for remaining count
2026-01-24 17:07:07 +09:00

21 lines
413 B
TOML

[project]
name = "random-number-generator"
version = "1.0.0"
description = "A fair random number generator"
license = {text = "Apache-2.0"}
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.128.0",
"httpx>=0.28.1",
"itsdangerous>=2.2.0",
"jinja2>=3.1.6",
"pytest>=9.0.2",
"python-multipart>=0.0.21",
"uvicorn>=0.40.0",
]
[dependency-groups]
dev = [
"pyinstaller>=6.18.0",
]