forked from messagemedia/messages-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1.02 KB
/
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
30
31
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='messagemedia_messages_sdk',
version='1.1.3',
description='The MessageMedia Messages API provides a number of endpoints for building powerful two-way messaging '
'applications.',
author='MessageMedia Developers',
author_email='developers@messagemedia.com',
url='https://developers.messagemedia.com/',
download_url='https://github.com/messagemedia/messages-python-sdk',
long_description=long_description,
license='Apache License 2.0',
packages=find_packages(),
install_requires=[
'requests>=2.9.1, <3.0',
'jsonpickle>=0.7.1, <1.0',
'cachecontrol>=0.11.7, <1.0',
'python-dateutil>=2.5.3, <3.0'
],
tests_require=[
'nose>=1.3.7'
],
test_suite='nose.collector'
)