kopia lustrzana https://github.com/micropython/micropython-lib
umqtt.simple: Release 1.0.
rodzic
9f71425ade
commit
dd89d5452b
|
@ -0,0 +1,5 @@
|
|||
srctype = micropython-lib
|
||||
type = package
|
||||
version = 1.0
|
||||
author = Paul Sokolovsky
|
||||
long_desc = Lightweight MQTT client for MicroPython.
|
|
@ -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'])
|
Ładowanie…
Reference in New Issue