umqtt.simple: Release 1.0.

pull/81/head
Paul Sokolovsky 2016-07-03 15:39:06 +03:00
rodzic 9f71425ade
commit dd89d5452b
2 zmienionych plików z 23 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,5 @@
srctype = micropython-lib
type = package
version = 1.0
author = Paul Sokolovsky
long_desc = Lightweight MQTT client for MicroPython.

Wyświetl plik

@ -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'])