30 lines
738 B
TOML
30 lines
738 B
TOML
[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"
|