streamd/pyproject.toml
Konstantin Fickel 2d66eaef89
Some checks failed
Continuous Integration / Lint, Check & Test (push) Failing after 30s
feat: add github actions
Signed-off-by: Konstantin Fickel <mail@konstantinfickel.de>
2025-09-23 11:39:10 +02:00

30 lines
572 B
TOML

[project]
name = "streamer"
version = "0.1.0"
description = "Searching for tags in streams"
readme = "README.md"
requires-python = "3.12.11"
dependencies = [
"click>=8.2.1",
"mistletoe>=1.4.0",
"pydantic>=2.11.3",
"pydantic-settings[yaml]>=2.10.0",
"rich>=14.0.0",
"typer>=0.16.0",
"xdg-base-dirs>=6.0.2",
]
[project.scripts]
streamer = "streamer:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"faker>=37.4.0",
"pyright>=1.1.402",
"pytest>=8.3.5",
"ruff>=0.6.7",
]