streamd/pyproject.toml
Renovate Bot 5132814a77
All checks were successful
Continuous Integration / Build Package (push) Successful in 23s
Continuous Integration / Lint, Check & Test (push) Successful in 38s
chore(deps): update dependency basedpyright to v1.38.2
2026-02-27 01:07:14 +01:00

30 lines
573 B
TOML

[project]
name = "streamd"
version = "0.1.0"
description = "Searching for tags in streams"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"click==8.3.1",
"mistletoe==1.5.1",
"pydantic==2.12.5",
"pydantic-settings[yaml]==2.13.1",
"rich==14.3.3",
"typer==0.24.1",
"xdg-base-dirs==6.0.2",
]
[project.scripts]
streamd = "streamd:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"basedpyright==1.38.2",
"faker==40.5.1",
"pytest==9.0.2",
"ruff==0.15.4",
]