-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 984 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
31
32
33
from setuptools import setup
import version
setup(name='iotile_cloud',
version=version.version,
description='Python client for https://iotile.cloud',
url='https://github.com/iotile/python_iotile_cloud',
author='Arch Systems Inc.',
author_email="[email protected]",
license='MIT',
packages=[
'iotile_cloud',
'iotile_cloud.api',
'iotile_cloud.utils',
'iotile_cloud.stream'
],
entry_points={
'pytest11': ['mock_cloud = iotile_cloud.utils.mock_cloud']
},
install_requires=[
'future',
'requests>=2.21.0',
'python-dateutil'
],
keywords=["iotile", "arch", "iot", "automation"],
classifiers=[
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules"
],
zip_safe=False)