forked from ibm-watson-iot/iot-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 1.2 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
32
33
34
35
36
37
38
39
40
import sys
sys.path.insert(0, 'src')
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='ibmiotf',
version="0.1.5",
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-messaging/iot-python',
license=open('LICENSE').read(),
description='IBM Internet of Things Foundation for Python',
long_description=open('README.rst').read(),
licence='Eclipse Public License - v 1.0',
install_requires=[
"iso8601 >= 0.1.10",
"paho-mqtt >= 1.1",
"pytz >= 2014.7",
"requests >= 2.5.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',
'Topic :: Communications',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)