-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (46 loc) · 1.82 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
42
43
44
45
46
47
48
49
50
51
from setuptools import find_packages, setup
with open("README.rst", "r", encoding="utf-8") as f:
long_description = f.read()
__version__ = "0.0.2"
REPO_NAME = "chatInsights"
AUTHOR = "ronilpatil"
AUTHOR_EMAIL = "[email protected]"
AUTHOR_USER_NAME = "ronylpatil"
setup(
name=REPO_NAME,
version=__version__,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
description=("whatsapp group chat analysis python package"),
keywords=["chat analysis", "statistical analysis", "eda"],
long_description=long_description,
long_description_content="text/markdown",
url=f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
"Natural Language :: English",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Communications :: Chat",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
],
python_requires=">=3.9",
project_urls={
"Source": f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}",
"Bug Tracker": f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}/issues",
"Changelog": f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}/releases",
},
package_dir={"": "src"},
packages=find_packages(where="src"),
)
# ref. for classifiers: https://pypi.org/classifiers/