-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
74 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
from twilio import __version__ | ||
from setuptools import setup, find_packages | ||
|
||
# To install the twilio-python library, open a Terminal shell, then run this | ||
# file by typing: | ||
# | ||
# python setup.py install | ||
# | ||
# You need to have the setuptools module installed. Try reading the setuptools | ||
# documentation: http://pypi.python.org/pypi/setuptools | ||
|
||
setup( | ||
name = "twilio", | ||
version = __version__, | ||
description = "Twilio API client and TwiML generator", | ||
author = "Twilio", | ||
author_email = "help@twilio.com", | ||
url = "http://github.com/twilio/twilio-python/", | ||
keywords = ["twilio","twiml"], | ||
install_requires = ["httplib2 >= 0.7, < 0.8", "pyjwt==0.1.2"], | ||
packages = find_packages(), | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 2.5", | ||
"Programming Language :: Python :: 2.6", | ||
"Programming Language :: Python :: 2.7", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: Communications :: Telephony", | ||
], | ||
long_description = """\ | ||
Python Twilio Helper Library | ||
---------------------------- | ||
DESCRIPTION | ||
The Twilio REST SDK simplifies the process of makes calls to the Twilio REST. | ||
The Twilio REST API lets to you initiate outgoing calls, list previous calls, | ||
and much more. See http://www.github.com/twilio/twilio-python for more information. | ||
LICENSE The Twilio Python Helper Library is distributed under the MIT | ||
License """ ) |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters