-
Notifications
You must be signed in to change notification settings - Fork 186
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.46 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (38 loc) · 1.46 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "claude-real-video"
version = "0.10.3"
description = "Let Claude (or any LLM) actually watch a video — scene-aware, deduplicated frames + transcript, from a URL or local file."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "LeoAido" }]
keywords = ["claude", "llm", "ai", "video", "ffmpeg", "whisper", "yt-dlp", "transcription", "vision"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Multimedia :: Video",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"yt-dlp[default,deno]>=2026.7.4", # 2026.07+ needed for YouTube's EJS n-challenge; [deno] bundles the JS runtime so URL downloads work with zero setup
"Pillow>=9.0.0",
]
[project.optional-dependencies]
whisper = ["openai-whisper>=20240930"]
fast = ["faster-whisper>=1.1.0"]
speakers = ["sherpa-onnx>=1.13.4", "numpy>=1.24"]
mcp = ["mcp>=1.2"]
[project.scripts]
claude-real-video = "claude_real_video.cli:main"
crv = "claude_real_video.cli:main"
crv-web = "claude_real_video.serve:main"
crv-mcp = "claude_real_video.mcp_server:main"
crv-ask = "claude_real_video.memory:main"
[project.urls]
Homepage = "https://github.com/HUANGCHIHHUNGLeo/claude-real-video"
Issues = "https://github.com/HUANGCHIHHUNGLeo/claude-real-video/issues"
[tool.setuptools.packages.find]
where = ["src"]