mqtt/setup.py
Thomas Klaehn 31b6294088 mqtt wrapper: initial commit
Signed-off-by: Thomas Klaehn <tkl@blackfinn.de>
2018-01-29 22:16:38 +01:00

14 lines
375 B
Python
Executable File

#!/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>
'''
from distutils.core import setup
setup(name='mqtt', version='1.0.0', author='Thomas Klaehn',
author_email='tkl@blackfinn.de', packages=['mqtt'])