-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 952 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 952 Bytes
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
# setup.py
from setuptools import setup, find_packages
setup(
name='whatsapp-groupchat-analyzer',
version='1.0.7', # Increment the version number
author="Gaurav Meena",
author_email="gauravmeena0708@gmail.com",
description="A Python package for analyzing WhatsApp group chats.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/gauravmeena0708/whatsapp-analyzer", # Your project URL
packages=find_packages(),
install_requires=[
"seaborn>=0.9",
"textblob",
"emoji",
"networkx",
"matplotlib",
"wordcloud",
"nltk",
"scikit-learn"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License", # Choose a license
"Operating System :: OS Independent",
],
python_requires=">=3.7", # Minimum Python version
)