Skip to content

Commit dd89d54

Browse files
author
Paul Sokolovsky
committed
umqtt.simple: Release 1.0.
1 parent 9f71425 commit dd89d54

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

umqtt.simple/metadata.txt

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

umqtt.simple/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.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='[email protected]',
15+
maintainer='MicroPython Developers',
16+
maintainer_email='[email protected]',
17+
license='MIT',
18+
packages=['umqtt'])

0 commit comments

Comments
 (0)