1 parent 7251b8f commit 6cac26fCopy full SHA for 6cac26f
select/setup.py
@@ -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