-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·41 lines (39 loc) · 1.18 KB
/
setup.py
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
"""
Video Topic Splitter - A tool for segmenting videos based on topic analysis.
Code generated by Claude (Anthropic) based on user specifications and requirements.
"""
from setuptools import setup, find_packages
setup(
name="video_topic_splitter",
version="0.1.0",
description="AI-generated tool for topic-based video segmentation",
long_description="""
This package was generated by Claude (Anthropic) based on user specifications.
It combines audio processing, transcription, topic modeling, and AI analysis
to intelligently segment videos based on content.
""",
author="Generated by Claude (Anthropic)",
author_email="[email protected]",
package_dir={"": "src"},
packages=find_packages(where="src"),
include_package_data=True,
install_requires=[
"python-dotenv",
"deepgram-sdk",
"groq",
"pydub",
"spacy",
"gensim",
"videogrep",
"moviepy",
"progressbar2",
"google-generativeai",
"Pillow"
],
entry_points={
'console_scripts': [
'video-topic-splitter=video_topic_splitter.cli:main',
],
},
python_requires=">=3.8",
)