uasyncio: Split off uasyncio.core dist module.

pull/11/head
Paul Sokolovsky 2014-10-24 01:00:53 +03:00
rodzic 2b582fd934
commit 4a884ef849
5 zmienionych plików z 31 dodań i 6 usunięć

Wyświetl plik

@ -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

Wyświetl plik

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

Wyświetl plik

@ -1,6 +1,6 @@
srctype = micropython-lib
type = module
version = 0.6.2
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.
depends = heapq, errno, select, logging
depends = errno, select, uasyncio.core

Wyświetl plik

@ -6,7 +6,7 @@ from setuptools import setup
setup(name='micropython-uasyncio',
version='0.6.2',
version='0.7',
description='uasyncio 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',
@ -15,5 +15,5 @@ setup(name='micropython-uasyncio',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
py_modules=['uasyncio'],
install_requires=['micropython-heapq', 'micropython-errno', 'micropython-select', 'micropython-logging'])
packages=['uasyncio'],
install_requires=['micropython-errno', 'micropython-select', 'micropython-uasyncio.core'])