Skip to content

Commit 286ead8

Browse files
author
Paul Sokolovsky
committed
select: Convert to metadata.txt.
1 parent f4d921c commit 286ead8

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

select/metadata.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
srctype = micropython-lib
2+
type = module
3+
version = 0.0.6
4+
author = Paul Sokolovsky
5+
depends = os

select/setup.py

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
import sys
2-
# Remove current dir from sys.path, otherwise distutils will peek up our
3-
# copy module instead of system.
2+
# Remove current dir from sys.path, otherwise setuptools will peek up our
3+
# module instead of system.
44
sys.path.pop(0)
55
from setuptools import setup
66

7+
78
setup(name='micropython-select',
8-
version='0.0.5',
9-
description='select module to MicroPython',
9+
version='0.0.6',
10+
description='select module for MicroPython',
11+
long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.",
1012
url='https://github.com/micropython/micropython/issues/405',
1113
author='Paul Sokolovsky',
1214
author_email='[email protected]',
15+
maintainer='MicroPython Developers',
16+
maintainer_email='[email protected]',
1317
license='MIT',
14-
install_requires=['micropython-os'],
15-
py_modules=['select'])
18+
py_modules=['select'],
19+
install_requires=['micropython-os'])

0 commit comments

Comments
 (0)