File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed 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
+ long_desc = Lightweight MQTT client for MicroPython.
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.simple' ,
9
+ version = '1.0' ,
10
+ description = 'umqtt.simple module for MicroPython' ,
11
+ long_description = 'Lightweight MQTT client for MicroPython.' ,
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