Skip to content

Commit

Permalink
Merge pull request #18 from green-api/SW-1614
Browse files Browse the repository at this point in the history
Updated `setup.py`
  • Loading branch information
Amele9 authored May 24, 2023
2 parents dc60cb8 + 7ca90a0 commit 980fe5c
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 17 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
requests
requests==2.30.0
46 changes: 30 additions & 16 deletions setup.py
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"
)

0 comments on commit 980fe5c

Please sign in to comment.