Skip to content

Commit 1aaaf0d

Browse files
committed
umqtt.robust: Add README and metadata.
1 parent bfeaea5 commit 1aaaf0d

File tree

3 files changed

+32
-0
lines changed

3 files changed

+32
-0
lines changed

umqtt.robust/README.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
umqtt.robust
2+
============
3+
4+
umqtt is a simple MQTT client for MicroPython. (Note that it uses some
5+
MicroPython shortcuts and doesn't work with CPython). It consists of
6+
two submodules: umqtt.simple and umqtt.robust. umqtt.robust is built
7+
on top of umqtt.simple and adds auto-reconnect facilities for some of
8+
networking errors.

umqtt.robust/metadata.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
srctype = micropython-lib
2+
type = package
3+
version = 1.0
4+
author = Paul Sokolovsky
5+
desc = Lightweight MQTT client for MicroPython ("robust" version).
6+
long_desc = README.rst

umqtt.robust/setup.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import sys
2+
# Remove current dir from sys.path, otherwise setuptools will peek up our
3+
# module instead of system.
4+
sys.path.pop(0)
5+
from setuptools import setup
6+
7+
8+
setup(name='micropython-umqtt.robust',
9+
version='1.0',
10+
description='Lightweight MQTT client for MicroPython ("robust" version).',
11+
long_description=open('README.rst').read(),
12+
url='https://github.com/micropython/micropython/issues/405',
13+
author='Paul Sokolovsky',
14+
author_email='micro-python@googlegroups.com',
15+
maintainer='MicroPython Developers',
16+
maintainer_email='micro-python@googlegroups.com',
17+
license='MIT',
18+
packages=['umqtt'])

0 commit comments

Comments
 (0)