-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
67 lines (58 loc) · 1.26 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[project]
name = "video-rss-aggregator"
version = "0.1.0"
description = "Video RSS summarization with Qwen 3.5 vision models and 8GB VRAM governance"
requires-python = ">=3.11"
license = {text = "Apache-2.0"}
dependencies = [
"aiosqlite==0.21.0",
"fastapi==0.134.0",
"uvicorn[standard]==0.41.0",
"httpx==0.28.1",
"feedparser==6.0.12",
"click==8.3.1",
"yt-dlp==2026.2.21",
]
[project.optional-dependencies]
dev = [
"pytest==8.4.2",
"ruff==0.15.4",
]
[project.scripts]
vra = "cli:cli"
[build-system]
requires = ["setuptools>=75"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
py-modules = [
"vra",
"cli",
"core_config",
"service_media",
"service_ollama",
"service_transcribe",
"service_summarize",
"adapter_gui",
"adapter_api",
"adapter_rss",
"adapter_storage",
]
[tool.setuptools.packages.find]
include = ["video_rss_aggregator*"]
[tool.setuptools.package-data]
video_rss_aggregator = ["templates/*.html", "static/*.css", "static/*.js"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
[tool.ruff]
line-length = 88
target-version = "py311"
exclude = [
".data",
".venv",
".venv-wsl",
]
[tool.ruff.lint]
select = ["E", "F"]
ignore = ["E501"]