File size: 940 Bytes
4a741cb
 
 
93bbd17
4a741cb
 
 
55861c9
 
 
 
 
 
 
 
 
 
 
 
75383e4
 
4a741cb
25df9e1
 
 
 
 
f7156b4
 
25df9e1
 
 
 
 
 
 
 
 
 
 
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
[project]
name = "video-analyzer"
version = "0.1.0"
description = "A Gradio application for downloading and transcribing YouTube videos"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
    "gradio[oauth]>=5.9.0",
    "huggingface_hub>=0.27.0",
    "itsdangerous>=2.2.0",
    "yt-dlp>=2024.12.0",
    "transformers>=4.47.0",
    "torch>=2.5.0",
    "accelerate>=1.2.0",
    "opencv-python-headless>=4.10.0",
    "Pillow>=11.0.0",
    "chromadb>=0.5.0",
    "sentence-transformers>=3.3.0",
    "spaces>=0.31.0",
    "edge-tts>=6.1.0",
    "soundfile>=0.12.0",
]

[project.optional-dependencies]
dev = [
    "pytest>=7.4.0",
    "pytest-cov>=4.1.0",
    "pytest-playwright>=0.4.0",
    "playwright>=1.40.0",
]

[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
filterwarnings = [
    "ignore::DeprecationWarning",
    "ignore::UserWarning",
]