Initial commit

Signed-off-by: Thomas Klaehn <tkl@blackfinn.de>
This commit is contained in:
2017-02-15 09:33:38 +01:00
commit e4655c25ae
11 changed files with 129 additions and 0 deletions

14
source/main/__init__.py Normal file
View File

@@ -0,0 +1,14 @@
'''
Created on Feb 15, 2017
@author: tkl
'''
import sys
def main():
''' Entry point for the mqtt data logger.
'''
pass
if __name__ == '__main__':
sys.exit(main())

18
source/setup.py Normal file
View File

@@ -0,0 +1,18 @@
'''
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'],
)