Skip to content

Commit 6cac26f

Browse files
committed
select: Add setup metadata.
1 parent 7251b8f commit 6cac26f

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

‎select/setup.py

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import sys
2+
# Remove current dir from sys.path, otherwise distutils will peek up our
3+
# copy module instead of system.
4+
sys.path.pop(0)
5+
from setuptools import setup
6+
7+
setup(name='micropython-select',
8+
version='0.0.1',
9+
description='select module to MicroPython',
10+
url='https://github.com/micropython/micropython/issues/405',
11+
author='Paul Sokolovsky',
12+
author_email='micro-python@googlegroups.com',
13+
license='MIT',
14+
install_requires=['micropython-os'],
15+
py_modules=['select'])

0 commit comments

Comments
 (0)