-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·49 lines (39 loc) · 1.26 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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(
name='whatsapp_business_api',
version='0.9',
description='Python client for Meta WhatsApp Business API',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/sendbee/whatsapp-business-python-client-api',
licence='MIT',
author='Sendbee ltd',
author_email='info@sendbee.io',
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'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',
],
keywords='Meta WhatsApp api python',
packages=find_packages(),
install_requires=[
'click>=7.0',
'requests>=2.20.0',
'dumpit>=0.5.0',
'aenum>=2.1.2',
'ujson>=2.0.1',
'curlify>=2.2.1'
],
project_urls={
'Source': 'https://github.com'
'/sendbee/whatsapp-business-python-client-api',
},
)