File size: 708 Bytes
01d9265 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
[tool.poetry]
name = "comet"
version = "0.1.0"
description = "Stremio's fastest torrent/debrid search add-on."
authors = ["Goldy"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/g0ldyy/comet"
[tool.poetry.dependencies]
python = "^3.11"
uvicorn = "*"
fastapi = "*"
aiohttp = "*"
asyncio = "*"
loguru = "*"
databases = "*"
pydantic-settings = "*"
bencode-py = "*"
httpx = "*"
curl-cffi = "*"
orjson = "*"
asyncpg = "*"
aiosqlite = "*"
jinja2 = "*"
rank-torrent-name = "*"
parsett = "*"
[tool.poetry.group.dev.dependencies]
isort = "*"
pyright = "*"
pytest = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|