streamer/pyproject.toml
Konstantin Fickel ac749d63d9
All checks were successful
Continuous Integration / Lint, Check & Test (push) Successful in 1m12s
bump: update versions
Signed-off-by: Konstantin Fickel <mail@konstantinfickel.de>
2025-10-12 10:59:37 +02:00

30 lines
573 B
TOML

[project]
name = "streamer"
version = "0.1.0"
description = "Searching for tags in streams"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"click>=8.3.0",
"mistletoe>=1.4.0",
"pydantic>=2.12.0",
"pydantic-settings[yaml]>=2.11.0",
"rich>=14.2.0",
"typer>=0.19.2",
"xdg-base-dirs>=6.0.2",
]
[project.scripts]
streamer = "streamer:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"faker>=37.11.0",
"pyright>=1.1.406",
"pytest>=8.4.2",
"ruff>=0.11.2",
]