-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (84 loc) · 2.04 KB
/
Copy pathpyproject.toml
File metadata and controls
98 lines (84 loc) · 2.04 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[project]
name = "open_deep_video_research"
version = "0.1.0"
description = "Deep research and analysis for video content using multi-agent LLM systems"
authors = [
{ name = "Inés Arana Bach" }
]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.12"
dependencies = [
# LangGraph & LangChain Core (from Open Deep Research)
"langgraph>=0.5.4",
"langchain>=0.3.0",
"langchain-community>=0.3.9",
"langchain-openai>=0.3.28",
"langchain-anthropic>=0.3.15",
"langchain-groq>=0.2.4",
"langchain-google-vertexai>=2.0.25",
"langchain-google-genai>=2.1.5",
"langchain-core>=0.3.15",
"langchain-qdrant>=0.2.1",
# Video Analysis (TwelveLabs)
"twelvelabs>=1.0.2",
# YouTube & Transcript
"google-api-python-client>=2.149.0",
"youtube-transcript-api>=0.6.1",
"yt-dlp>=2024.10.22",
# Web Search
"tavily-python>=0.5.0",
# ML & Analysis
"huggingface-hub>=0.34.0",
# Vector Store
"qdrant-client>=1.12.1",
# API & Server
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.6",
# Utilities
"pydantic>=2.9.2",
"python-dotenv>=1.0.1",
"requests>=2.32.3",
"openai>=1.99.2",
"tiktoken>=0.5.0",
"arxiv>=2.1.3",
"pymupdf>=1.25.3",
"xmltodict>=0.14.2",
"beautifulsoup4>=4.13.3",
"markdownify>=0.11.6",
"httpx>=0.24.0",
"rich>=13.0.0",
"langsmith>=0.3.37",
"pandas>=2.3.1",
# Media Processing
"ffmpeg-python>=0.2.0",
]
[project.optional-dependencies]
dev = [
"mypy>=1.11.1",
"ruff>=0.6.1",
"pytest>=7.0.0"
]
[build-system]
requires = ["setuptools>=73.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["app", "open_deep_video_research"]
[tool.setuptools.package-dir]
app = "app"
"open_deep_video_research" = "open_deep_video_research"
[tool.ruff]
lint.select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"UP",
]
lint.ignore = [
"UP006",
"UP007",
"UP035",
"E501",
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["UP"]