-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 684 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name="VideoAnalyzer",
version="1.0.0",
description="A local, fully offline AI pipeline for comprehensive video analysis using audio transcription and visual frame inspection.",
author="S. Pratham",
packages=find_packages(),
install_requires=[
"faster-whisper>=1.0.0",
"opencv-python>=4.8.0",
"scikit-image>=0.21.0",
"numpy>=1.24.0",
"requests>=2.31.0",
"Pillow>=10.0.0",
"torch>=2.0.0",
"ffmpeg-python>=0.2.0",
"transformers>=4.45.0",
"accelerate>=0.26.0",
"qwen-vl-utils>=0.0.1",
],
python_requires=">=3.10",
)