forked from plivo/plivo-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·46 lines (43 loc) · 1.73 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
from setuptools import find_packages, setup
long_description = '''\
The Plivo Python SDK makes it simpler to integrate communications into your
Python applications using the Plivo REST API. Using the SDK, you will be able
to make voice calls, send SMS and generate Plivo XML to control your call flows.
See https://github.com/plivo/plivo-python for more information.
'''
setup(
name='plivo',
version='4.3.2',
description=
'A Python SDK to make voice calls & send SMS using Plivo and to generate Plivo XML',
long_description=long_description,
url='https://github.com/plivo/plivo-python',
author='The Plivo SDKs Team',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Communications :: Telephony',
],
install_requires=[
'requests >= 2, < 3',
'six >= 1, < 2',
'decorator >= 4, < 5',
'lxml >= 3, < 5',
],
keywords=['plivo', 'plivo xml', 'voice calls', 'sms'],
include_package_data=True,
packages=find_packages(exclude=['tests', 'tests.*']), )