File tree Expand file tree Collapse file tree 3 files changed +32
-0
lines changed
Expand file tree Collapse file tree 3 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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' ])
You can’t perform that action at this time.
0 commit comments