Files
WattpadDownloader/src/api/pyproject.toml
T

28 lines
635 B
TOML
Raw Normal View History

2024-11-30 16:00:34 +00:00
[project]
name = "api"
version = "0.1.0"
description = "Wattpad Downloader API"
readme = "../../README.md"
requires-python = ">=3.10"
dependencies = [
"aiohttp>=3.9.1",
"rich>=13.9.4",
"fastapi>=0.115.5",
"ebooklib>=0.18",
"python-dotenv>=1.0.1",
"pydantic-settings>=2.6.1",
"eliot>=1.16.0",
"type-extensions>=0.1.2",
2024-12-02 11:25:32 +00:00
"backoff>=2.2.1",
"aiohttp-client-cache[all]",
"bs4>=0.0.2",
"uvicorn>=0.32.1",
"pdfkit>=1.0.0",
2024-11-30 16:00:34 +00:00
]
[tool.ruff.lint]
ignore = ['E402']
2024-12-02 11:25:32 +00:00
[tool.uv.sources]
aiohttp-client-cache = { git = "https://github.com/TheOnlyWayUp/aiohttp-client-cache.git", rev = "keydb-ttl" }