Update setup.py
Browse files
setup.py
CHANGED
@@ -1,33 +1,33 @@
|
|
1 |
-
from setuptools import setup, find_packages
|
2 |
-
|
3 |
-
setup(
|
4 |
-
name="youtube-summarizer",
|
5 |
-
version="0.1.0",
|
6 |
-
packages=find_packages(),
|
7 |
-
install_requires=[
|
8 |
-
"torch",
|
9 |
-
"transformers",
|
10 |
-
"gradio",
|
11 |
-
"python-dotenv>=1.0.1",
|
12 |
-
"yt_dlp>=2024.8.6",
|
13 |
-
"google-generativeai>=0.7.2",
|
14 |
-
"numpy<2",
|
15 |
-
],
|
16 |
-
entry_points={
|
17 |
-
"console_scripts": [
|
18 |
-
"youtube-summarizer=
|
19 |
-
],
|
20 |
-
},
|
21 |
-
author="",
|
22 |
-
author_email="",
|
23 |
-
description="AI-powered YouTube video transcription and summarization tool",
|
24 |
-
long_description=open("README.md").read(),
|
25 |
-
long_description_content_type="text/markdown",
|
26 |
-
url="",
|
27 |
-
classifiers=[
|
28 |
-
"Programming Language :: Python :: 3",
|
29 |
-
"License :: OSI Approved :: MIT License",
|
30 |
-
"Operating System :: OS Independent",
|
31 |
-
],
|
32 |
-
python_requires=">=3.8",
|
33 |
-
)
|
|
|
1 |
+
from setuptools import setup, find_packages
|
2 |
+
|
3 |
+
setup(
|
4 |
+
name="youtube-summarizer",
|
5 |
+
version="0.1.0",
|
6 |
+
packages=find_packages(),
|
7 |
+
install_requires=[
|
8 |
+
"torch",
|
9 |
+
"transformers",
|
10 |
+
"gradio",
|
11 |
+
"python-dotenv>=1.0.1",
|
12 |
+
"yt_dlp>=2024.8.6",
|
13 |
+
"google-generativeai>=0.7.2",
|
14 |
+
"numpy<2",
|
15 |
+
],
|
16 |
+
entry_points={
|
17 |
+
"console_scripts": [
|
18 |
+
"youtube-summarizer=main:main",
|
19 |
+
],
|
20 |
+
},
|
21 |
+
author="",
|
22 |
+
author_email="",
|
23 |
+
description="AI-powered YouTube video transcription and summarization tool",
|
24 |
+
long_description=open("README.md").read(),
|
25 |
+
long_description_content_type="text/markdown",
|
26 |
+
url="",
|
27 |
+
classifiers=[
|
28 |
+
"Programming Language :: Python :: 3",
|
29 |
+
"License :: OSI Approved :: MIT License",
|
30 |
+
"Operating System :: OS Independent",
|
31 |
+
],
|
32 |
+
python_requires=">=3.8",
|
33 |
+
)
|