kopia lustrzana https://github.com/micropython/micropython-lib
16 wiersze
513 B
Python
16 wiersze
513 B
Python
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.5',
|
|
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'])
|