This commit is contained in:
2026-05-13 09:37:42 -04:00
parent ca3469376a
commit 2889993a7d
40 changed files with 1583 additions and 0 deletions

29
twitch-vod/pyproject.toml Normal file
View File

@@ -0,0 +1,29 @@
[project]
name = "twitch-vod"
version = "0.1.0"
description = ""
authors = [
{name = "Collin Campbell",email = "collincampbell97@proton.me"}
]
readme = "README.md"
requires-python = ">=3.10,<4"
dependencies = [
"streamlink (>=8.1.2,<9.0.0)",
"twitchapi (>=4.5.0,<5.0.0)",
"dotenv (>=0.9.9,<0.10.0)",
"loguru (>=0.7.3,<0.8.0)",
"pydantic (>=2.12.5,<3.0.0)",
"textual (>=7.5.0,<8.0.0)",
"textual-dev (>=1.8.0,<2.0.0)",
"psycopg2-binary (>=2.9.9,<3.0.0)",
"boto3 (>=1.35.0,<2.0.0)",
"fastapi[standard] (>=0.128.5,<0.129.0)",
]
[tool.poetry]
packages = [{include = "twitch_vod", from = "src"}]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"