Spaces:
Runtime error
Runtime error
| [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", | |
| ] | |