diff --git a/umqtt.simple/metadata.txt b/umqtt.simple/metadata.txt new file mode 100644 index 00000000..d3053aae --- /dev/null +++ b/umqtt.simple/metadata.txt @@ -0,0 +1,5 @@ +srctype = micropython-lib +type = package +version = 1.0 +author = Paul Sokolovsky +long_desc = Lightweight MQTT client for MicroPython. diff --git a/umqtt.simple/setup.py b/umqtt.simple/setup.py new file mode 100644 index 00000000..255cdd8f --- /dev/null +++ b/umqtt.simple/setup.py @@ -0,0 +1,18 @@ +import sys +# Remove current dir from sys.path, otherwise setuptools will peek up our +# module instead of system. +sys.path.pop(0) +from setuptools import setup + + +setup(name='micropython-umqtt.simple', + version='1.0', + description='umqtt.simple module for MicroPython', + long_description='Lightweight MQTT client for MicroPython.', + url='https://github.com/micropython/micropython/issues/405', + author='Paul Sokolovsky', + author_email='micro-python@googlegroups.com', + maintainer='MicroPython Developers', + maintainer_email='micro-python@googlegroups.com', + license='MIT', + packages=['umqtt'])