kopia lustrzana https://github.com/micropython/micropython-lib
uasyncio: Split off uasyncio.core dist module.
rodzic
2b582fd934
commit
4a884ef849
|
@ -0,0 +1,6 @@
|
||||||
|
srctype = micropython-lib
|
||||||
|
type = package
|
||||||
|
version = 0.7
|
||||||
|
author = Paul Sokolovsky
|
||||||
|
long_desc = Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess. (Core event loop).
|
||||||
|
depends = heapq, 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-uasyncio.core',
|
||||||
|
version='0.7',
|
||||||
|
description='uasyncio.core module for MicroPython',
|
||||||
|
long_description='Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess. (Core event loop).',
|
||||||
|
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=['uasyncio'],
|
||||||
|
install_requires=['micropython-heapq', 'micropython-logging'])
|
|
@ -1,6 +1,6 @@
|
||||||
srctype = micropython-lib
|
srctype = micropython-lib
|
||||||
type = module
|
type = package
|
||||||
version = 0.6.2
|
version = 0.7
|
||||||
author = Paul Sokolovsky
|
author = Paul Sokolovsky
|
||||||
long_desc = Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess.
|
long_desc = Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess.
|
||||||
depends = heapq, errno, select, logging
|
depends = errno, select, uasyncio.core
|
||||||
|
|
|
@ -6,7 +6,7 @@ from setuptools import setup
|
||||||
|
|
||||||
|
|
||||||
setup(name='micropython-uasyncio',
|
setup(name='micropython-uasyncio',
|
||||||
version='0.6.2',
|
version='0.7',
|
||||||
description='uasyncio module for MicroPython',
|
description='uasyncio module for MicroPython',
|
||||||
long_description='Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess.',
|
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',
|
url='https://github.com/micropython/micropython/issues/405',
|
||||||
|
@ -15,5 +15,5 @@ setup(name='micropython-uasyncio',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
py_modules=['uasyncio'],
|
packages=['uasyncio'],
|
||||||
install_requires=['micropython-heapq', 'micropython-errno', 'micropython-select', 'micropython-logging'])
|
install_requires=['micropython-errno', 'micropython-select', 'micropython-uasyncio.core'])
|
||||||
|
|
Ładowanie…
Reference in New Issue