-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
29 lines (26 loc) · 912 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
# Setup script for installing techbubbleiotjumpwaymqtt#
# Author: Adam Milton-Barker <adammiltonbarker@gmail.com>#
# Copyright (C) 2016 - 2017 TechBubble Technologies Limited
# For license information, see LICENSE.txt
import sys
sys.path.insert(0, 'src')
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='techbubbleiotjumpwaymqtt',
version="0.3.9",
author='Adam Milton-Barker',
author_email='adammiltonbarker@gmail.com',
package_dir={'': 'src'},
package_data={'techbubbleiotjumpwaymqtt': ['*.pem']},
url='https://github.com/TechBubbleTechnologies/IoT-JumpWay-Python-MQTT-Clients',
license='Eclipse Public License v1.0',
description='TechBubble Technologies IoT JumpWay MQTT Client for Python',
packages=['techbubbleiotjumpwaymqtt'],
install_requires=[
"paho-mqtt >= 1.2",
],
classifiers=[],
)