refactor!: rename package from streamer to streamd

- Rename src/streamer/ to src/streamd/
- Update all internal imports
- Update pyproject.toml project name and entry point
- Update README branding (Streamer -> Strea.md)
- Switch from pyright to basedpyright
- Bump requires-python to >=3.13
This commit is contained in:
Konstantin Fickel 2026-02-15 17:30:31 +01:00
parent 49cd9bcfa0
commit af2debc19b
Signed by: kfickel
GPG key ID: A793722F9933C1A5
23 changed files with 48 additions and 789 deletions

View file

@ -1,9 +1,9 @@
[project]
name = "streamer"
name = "streamd"
version = "0.1.0"
description = "Searching for tags in streams"
readme = "README.md"
requires-python = ">=3.12"
requires-python = ">=3.13"
dependencies = [
"click==8.3.1",
"mistletoe==1.5.1",
@ -15,7 +15,7 @@ dependencies = [
]
[project.scripts]
streamer = "streamer:app"
streamd = "streamd:app"
[build-system]
requires = ["hatchling"]
@ -23,8 +23,8 @@ build-backend = "hatchling.build"
[dependency-groups]
dev = [
"basedpyright==1.38.0",
"faker==40.4.0",
"pyright==1.1.408",
"pytest==9.0.2",
"ruff==0.15.1",
]