-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
35 lines (32 loc) · 1.29 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
"""zang setup.py"""
from setuptools import find_packages, setup
setup(name="zang",
author='Avaya Inc.',
author_email='cpaassupport@avaya.com',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities'],
description=('This Python pacakge is an open source tool built to '
'simplify interaction with the Avaya CPaaS telephony platform.'),
install_requires=['requests', 'python-dateutil'],
extras_require={
":python_version<'3.4'": ['enum'],
},
keywords='zang api wrapper',
license='MIT License',
packages=find_packages(exclude=['tests', 'tests.*', 'docs']),
url='http://docs.avayacloud.io',
test_suite='tests',
version="1.0.0")