kopia lustrzana https://github.com/micropython/micropython-lib
asyncio_micro: Add metadata.
rodzic
eff1250e3b
commit
abd8b1646a
|
@ -0,0 +1,6 @@
|
|||
srctype = micropython-lib
|
||||
type = module
|
||||
version = 0.5
|
||||
author = Paul Sokolovsky
|
||||
long_desc = Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess.
|
||||
depends = heapq, errno, select, logging
|
|
@ -0,0 +1,19 @@
|
|||
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-asyncio_micro',
|
||||
version='0.5',
|
||||
description='asyncio_micro module for MicroPython',
|
||||
long_description='Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess.',
|
||||
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',
|
||||
py_modules=['asyncio_micro'],
|
||||
install_requires=['micropython-heapq', 'micropython-errno', 'micropython-select', 'micropython-logging'])
|
Ładowanie…
Reference in New Issue