-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 766 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (32 loc) · 766 Bytes
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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rss-kindle"
version = "0.2.0"
description = "Kindle-first FreshRSS frontend with cached full-article extraction."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"beautifulsoup4>=4.12.3",
"fastapi>=0.116.0",
"httpx>=0.28.1",
"jinja2>=3.1.6",
"python-multipart>=0.0.20",
"readability-lxml>=0.8.1",
"uvicorn>=0.35.0",
]
[project.optional-dependencies]
browser = [
"playwright>=1.55.0",
]
dev = [
"httpx2>=2.0.0",
"playwright>=1.55.0",
"pytest>=8.4.1",
]
[project.scripts]
rss-kindle-benchmark = "app.benchmark:main"
rss-kindle-browser-benchmark = "app.browser_benchmark:main"
[tool.setuptools]
packages = ["app"]