select: Add setup metadata.

asyncio-segfault
Paul Sokolovsky 2014-04-19 21:01:44 +03:00
rodzic 7251b8f820
commit 6cac26f078
1 zmienionych plików z 15 dodań i 0 usunięć

15
select/setup.py 100644
Wyświetl plik

@ -0,0 +1,15 @@
import sys
# Remove current dir from sys.path, otherwise distutils will peek up our
# copy module instead of system.
sys.path.pop(0)
from setuptools import setup
setup(name='micropython-select',
version='0.0.1',
description='select module to MicroPython',
url='https://github.com/micropython/micropython/issues/405',
author='Paul Sokolovsky',
author_email='micro-python@googlegroups.com',
license='MIT',
install_requires=['micropython-os'],
py_modules=['select'])