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",
|
2024-11-30 19:23:09 +00:00
|
|
|
"pydantic-settings>=2.6.1",
|
2024-11-30 20:54:18 +00:00
|
|
|
"eliot>=1.16.0",
|
2024-11-30 21:35:31 +00:00
|
|
|
"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",
|
2024-12-06 15:28:51 +00:00
|
|
|
"pyexiftool>=0.5.6",
|
2024-12-10 15:56:29 +00:00
|
|
|
"weasyprint>=63.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" }
|