-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
48 lines (46 loc) · 1.76 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
from setuptools import find_packages, setup
with open("README.md", encoding="UTF-8") as file:
long_description = file.read()
setup(
name="whatsapp-api-client-python",
version="0.0.47",
description=(
"This library helps you easily create"
" a Python application with WhatsApp API."
),
long_description=long_description,
long_description_content_type="text/markdown",
author="GREEN API",
author_email="support@green-api.com",
url="https://github.com/green-api/whatsapp-api-client-python",
packages=find_packages(exclude=["tests"]),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Natural Language :: English",
"Natural Language :: Russian",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Communications",
"Topic :: Communications :: Chat",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks"
],
license=(
"Creative Commons Attribution-NoDerivatives 4.0 International"
" (CC BY-ND 4.0)"
),
install_requires=["requests>=2.31.0"],
python_requires=">=3.7"
)