-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 960 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 960 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='bandwidth_sdk',
version='1.0.6-stable',
description='This client library is designed to support the Bandwidth '
'API and the official Bandwidth SDK',
author='bandwidth',
maintainer='bandwidth',
maintainer_email='classifieds-admin@bandwidth.com',
url='https://github.com/bandwidthcom/python-bandwidth',
license='Apache',
packages=["bandwidth_sdk"],
long_description="Bandwidth Python API",
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: PyPy',
],
install_requires=[
'requests',
'python-dateutil',
'six'
],
)