forked from plivo/plivo-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 911 Bytes
/
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
from setuptools import setup
import sys
requires = ['requests>=0.10.8']
if sys.version_info < (2, 6):
requires.append('simplejson')
setup(
name = "plivo",
py_modules = ['plivo', "plivoxml"],
version = "0.9.6",
description = "Plivo Python library",
author = "Plivo Team",
author_email = "hello@plivo.com",
url = "https://github.com/plivo/plivo-python",
keywords = ["plivo", "rest"],
install_requires = requires,
classifiers = [
"Programming Language :: Python",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications :: Telephony"
],
long_description = """\
Plivo Python library
""" )