-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (49 loc) · 1.18 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (49 loc) · 1.18 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
[project]
name = "video-rss-aggregator"
version = "0.1.0"
description = "Local-first video RSS pipeline: poll feeds, acquire, transcribe, frame, summarize with a local VLM, publish RSS"
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",
"pytest-asyncio==1.3.0",
"ruff==0.15.12",
]
[project.scripts]
vra = "vra.cli:cli"
[build-system]
requires = ["setuptools>=75"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["vra*"]
[tool.setuptools.package-data]
vra = ["templates/*.html", "static/*.css", "static/*.js"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
asyncio_mode = "auto"
[tool.ruff]
line-length = 88
target-version = "py311"
exclude = [
".data",
".venv",
".venv-wsl",
]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"vra/api/app.py" = ["B008"]