streamd/pyproject.toml
Konstantin Fickel 2091e5c98d feat: add initial parser data structure & test
Signed-off-by: Konstantin Fickel <mail@konstantinfickel.de>
2025-06-22 12:52:15 +02:00

24 lines
419 B
TOML

[project]
name = "streamer"
version = "0.1.0"
description = "Searching for tags in streams"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"mistletoe>=1.4.0",
"pydantic>=2.11.3",
]
[project.scripts]
streamer = "streamer:run"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"faker>=37.4.0",
"pytest>=8.3.5",
"ruff>=0.6.7",
]