-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 1.29 KB
/
setup.py
File metadata and controls
27 lines (26 loc) · 1.29 KB
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
from distutils.core import setup
import os
from telapi import VERSION
setup(
name = "telapi",
version = VERSION,
description = "TelAPI REST API client and InboundXML generator",
author = "TelAPI",
author_email = "help@telapi.com",
url = "https://github.com/telapi/telapi-python/",
keywords = ["telapi", "inboundxml", "telephony", "rest"],
install_requires = ["requests"],
packages = ['telapi', 'telapi.inboundxml', 'telapi.rest', 'telapi.schema'],
package_data = {'telapi': ['data/*.json']},
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 = """This library interacts with the TelAPI service. It allows you to use the REST API in a pythonic way to initiate and
manage outbound calls and SMS messages as well as generate InboundXML to handle incoming calls and SMS messages. Check out http://telapi.com for free credits.""",
)