forked from tago-io/tago-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (22 loc) · 855 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
# *-* coding:utf-8 *-*
from setuptools import setup
setup(name='tago',
version='1.0.9',
description='Official Python lib for Tago',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: Other/Proprietary License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='tago iot raspberrypi raspberry',
url='https://github.com/tago-io/tago-python',
author='Tago LLC',
author_email='[email protected]',
license='Copyright',
packages=['tago', 'tago/device'],
test_suite='nose.collector',
tests_require=['nose'],
install_requires=['socketIO-client', 'requests', 'promise','requests-mock'],
zip_safe=False)