-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 1.11 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
from setuptools import find_packages, setup
with open("README.md") as f:
long_description = f.read()
setup(name = "YT_Sentiments",
version = "0.0.6",
description = "analyze up to 12000 comments from any youtube video!",
package_dir = {"":"src"},
packages = find_packages(where="src"),
long_description=long_description,
long_description_content_type="text/markdown",
url = "https://github.com/ZhengJiawen44/YT_Sentiment_Analyzer",
author = "Zheng Jiawen",
author_email="[email protected]",
license = "MIT",
classifiers=["Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
],
install_requires = ["emoji>=2.12.1",
"google_api_python_client>=2.139.0",
"vaderSentiment>=3.3.2",
"vaderSentiment>=3.3.2",],
python_requires = ">=3.10",
)