14
source/main/__init__.py
Normal file
14
source/main/__init__.py
Normal 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
18
source/setup.py
Normal 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'],
|
||||
)
|
Reference in New Issue
Block a user