streamd/pyproject.toml
Konstantin Fickel 0f21f2dd74
Some checks failed
Continuous Integration / Lint, Check & Test (push) Failing after 47s
ci: switch from pyright to ty
Signed-off-by: Konstantin Fickel <mail@konstantinfickel.de>
2026-02-01 10:16:51 +01:00

30 lines
567 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.1",
"mistletoe==1.5.1",
"pydantic==2.12.5",
"pydantic-settings[yaml]==2.12.0",
"rich==14.3.1",
"typer==0.21.1",
"xdg-base-dirs==6.0.2",
]
[project.scripts]
streamer = "streamer:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"faker==40.1.2",
"pytest==9.0.2",
"ruff==0.14.14",
"ty==0.0.14",
]