19 lines
392 B
Python
19 lines
392 B
Python
'''
|
|
Created on Feb 15, 2017
|
|
|
|
Type 'python setup.py sdist' to create the distribution,
|
|
type 'python setup.py install' to install the distribution.
|
|
|
|
@author: tkl
|
|
'''
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name='mqtt_logger',
|
|
version='0.1',
|
|
author='tkl',
|
|
author_email='tkl@blackfinn.de',
|
|
url='files.blackfinn.de/python/mqtt_logger-0.1.tar.gz',
|
|
packages=['main'],
|
|
)
|