This repository was archived by the owner on Jun 24, 2025. It is now read-only.
forked from ibm-watson-iot/iot-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (42 loc) · 1.36 KB
/
setup.py
File metadata and controls
44 lines (42 loc) · 1.36 KB
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
34
35
36
37
38
39
40
41
42
43
44
import sys
sys.path.insert(0, 'src')
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='ibmiotf',
version="0.3.2",
author='David Parker',
author_email='parkerda@uk.ibm.com',
package_dir={'': 'src'},
packages=['ibmiotf', 'ibmiotf.codecs'],
package_data={'ibmiotf': ['*.pem']},
url='https://github.com/ibm-watson-iot/iot-python',
license=open('LICENSE').read(),
description='Python Client for IBM Watson IoT Platform',
long_description=open('README.rst').read(),
install_requires=[
"iso8601 >= 0.1.12",
"paho-mqtt >= 1.3.1",
"pytz >= 2017.3",
"requests >= 2.18.4",
"requests_toolbelt >= 0.8.0",
"dicttoxml >= 1.7.4",
"xmltodict >= 0.11.0"
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Communications',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)