feat: starting streamer

Signed-off-by: Konstantin Fickel <mail@konstantinfickel.de>
This commit is contained in:
Konstantin Fickel 2025-04-13 13:56:21 +02:00
commit 329ebdf9a9
7 changed files with 576 additions and 0 deletions

21
pyproject.toml Normal file
View file

@ -0,0 +1,21 @@
[project]
name = "streamer"
version = "0.1.0"
description = "Searching for tags in streams"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"urllib3>=2.2.3",
]
[project.scripts]
streamer = "streamer:hello"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ruff>=0.6.7",
]