-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
29 lines (27 loc) · 918 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 = []
if sys.version_info < (2, 6):
requires.append('simplejson')
setup(
name = "plivohelper",
py_modules = ['plivohelper'],
version = "0.1.0",
description = "Plivo API client and RESTXML generator",
author = "Plivo Team",
author_email = "hello@plivo.org",
url = "https://github.com/plivo/plivohelper-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 :: 4 - Beta",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications :: Telephony"
],
long_description = """\
Python Plivo Client Helper Library
""" )