-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from green-api/SW-1614
Updated `setup.py`
- Loading branch information
Showing
2 changed files
with
31 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
requests | ||
requests==2.30.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,38 @@ | ||
import setuptools | ||
from setuptools import setup, find_packages | ||
|
||
with open("README.md") as file: | ||
read_me_description = file.read() | ||
with open("README.md", encoding="UTF-8") as file: | ||
long_description = file.read() | ||
|
||
setuptools.setup( | ||
setup( | ||
name="whatsapp-api-client-python", | ||
version="0.0.34", | ||
install_requires=['requests'], | ||
author="Ivan Sadovy", | ||
author_email="[email protected]", | ||
description="This library helps you easily create a python '\ | ||
'application to connect the WhatsApp API using service green-api.com", | ||
long_description=read_me_description, | ||
version="0.0.35", | ||
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="[email protected]", | ||
url="https://github.com/green-api/whatsapp-api-client-python", | ||
packages=['whatsapp_api_client_python', 'whatsapp_api_client_python.tools'], | ||
packages=find_packages(exclude=["examples", "tests"]), | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Intended Audience :: Developers", | ||
"License :: Other/Proprietary License", | ||
"Operating System :: OS Independent", | ||
"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", | ||
"Topic :: Software Development :: Libraries :: Application Frameworks" | ||
], | ||
python_requires='>=3.5', | ||
) | ||
license=( | ||
"Creative Commons Attribution-NoDerivatives 4.0 International" | ||
" (CC BY-ND 4.0)" | ||
), | ||
install_requires=["requests==2.30.0"], | ||
python_requires=">=3.7" | ||
) |