Skip to content

Commit 3b7f7a8

Browse files
added setup.py
1 parent b20c867 commit 3b7f7a8

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

setup.py

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# coding: utf-8
2+
3+
"""
4+
Telstra Messaging API
5+
6+
The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages.
7+
"""
8+
9+
10+
import sys
11+
from setuptools import setup, find_packages
12+
13+
NAME = "Telstra"
14+
VERSION = "1.0.0"
15+
# To install the library, run the following
16+
#
17+
# python setup.py install
18+
#
19+
# prerequisite: setuptools
20+
# http://pypi.python.org/pypi/setuptools
21+
22+
REQUIRES = ["cachecontrol", "jsonpickle", "requests", "python-dateutil"]
23+
24+
setup(
25+
name=NAME,
26+
version=VERSION,
27+
description="Telstra Messaging API",
28+
author_email="",
29+
url="https://github.com/telstra/MessagingAPI-SDK-python",
30+
keywords=["Telstra Messaging SDK - Python Library"],
31+
install_requires=REQUIRES,
32+
packages=find_packages(),
33+
include_package_data=True,
34+
long_description="""\
35+
The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages.
36+
"""
37+
)

0 commit comments

Comments
 (0)