2018-01-29 21:01:46 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
'''
|
|
|
|
Created on Jan 29, 2011
|
|
|
|
|
|
|
|
Type 'python setup.py sdist' to create the distribution,
|
|
|
|
type 'python setup.py install' to install the distribution.
|
|
|
|
|
|
|
|
@author: Thomas Klaehn <thomas.klaehn@u-blox.com>
|
|
|
|
'''
|
2019-08-14 13:04:28 +00:00
|
|
|
from setuptools import setup
|
2018-01-29 21:01:46 +00:00
|
|
|
|
2018-02-10 10:36:10 +00:00
|
|
|
setup(name='mqtt', version='1.1.0', author='Thomas Klaehn',
|
2019-08-14 13:04:28 +00:00
|
|
|
author_email='tkl@blackfinn.de', packages=['mqtt'], install_requires=['paho-mqtt'])
|