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
27 lines (25 loc) · 675 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 675 Bytes
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
import sys
sys.path.insert(0, 'src')
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='ibmiotf',
version="0.0.10",
author='David Parker',
author_email='parkerda@uk.ibm.com',
package_dir={'': 'src'},
packages=['ibmiotf'],
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.txt').read(),
install_requires=[
"iso8601 >= 0.1.10",
"paho-mqtt >= 1.0",
"pytz >= 2014.7",
"requests >= 2.5.0"
]
)