Skip to content

Commit 889c546

Browse files
committed
asyncio_micro: Add metadata.
1 parent eecd6c7 commit 889c546

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

asyncio_micro/metadata.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
srctype = micropython-lib
2+
type = module
3+
version = 0.5
4+
author = Paul Sokolovsky
5+
long_desc = Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess.
6+
depends = heapq, errno, select, logging

asyncio_micro/setup.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import sys
2+
# Remove current dir from sys.path, otherwise setuptools will peek up our
3+
# module instead of system.
4+
sys.path.pop(0)
5+
from setuptools import setup
6+
7+
8+
setup(name='micropython-asyncio_micro',
9+
version='0.5',
10+
description='asyncio_micro module for MicroPython',
11+
long_description='Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess.',
12+
url='https://github.com/micropython/micropython/issues/405',
13+
author='Paul Sokolovsky',
14+
author_email='[email protected]',
15+
maintainer='MicroPython Developers',
16+
maintainer_email='[email protected]',
17+
license='MIT',
18+
py_modules=['asyncio_micro'],
19+
install_requires=['micropython-heapq', 'micropython-errno', 'micropython-select', 'micropython-logging'])

0 commit comments

Comments
 (0)