forked from flowroute/flowroute-messaging-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 867 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
30
from setuptools import setup, find_packages
setup(
name='flowroute-messaging-python',
version='0.0.0',
license='MIT',
description='Flowroute\'s Messaging API',
author='Flowroute Developers',
author_email='[email protected]',
url='https://github.com/flowroute/flowroute-messaging-python',
packages=find_packages('.'),
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
],
keywords=[
'messaging', 'sms', 'telephony', 'sip', 'api'
],
install_requires=[
'requests',
'jsonpickle',
],
)