forked from Bandwidth/python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 866 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 866 Bytes
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
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
if sys.version_info[0] < 3:
with open('README.md', 'r') as fh:
long_description = fh.read()
else:
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='bandwidth-sdk',
version='6.13.2',
description='Bandwidth\'s set of APIs',
long_description=long_description,
long_description_content_type="text/markdown",
author='APIMatic SDK Generator',
author_email='support@apimatic.io',
url='https://apimatic.io',
packages=find_packages(),
install_requires=[
'requests>=2.9.1, <3.0',
'jsonpickle>=0.7.1, <1.0',
'cachecontrol>=0.11.7, <1.0',
'python-dateutil>=2.5.1, <3.0',
'enum34>=1.1.6',
'lxml>=4.3.4'
]
)