2015-01-02 19:17:11 +00:00
|
|
|
import sys
|
|
|
|
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
|
|
|
# module instead of system.
|
|
|
|
sys.path.pop(0)
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
|
|
|
|
setup(name='micropython-cpython-uasyncio',
|
2015-01-02 20:21:42 +00:00
|
|
|
version='0.2',
|
2015-01-02 19:17:11 +00:00
|
|
|
description='MicroPython module uasyncio ported to CPython',
|
|
|
|
long_description='This is MicroPython compatibility module, allowing applications using\nMicroPython-specific features to run on CPython.\n',
|
|
|
|
url='https://github.com/micropython/micropython/issues/405',
|
|
|
|
author='MicroPython Developers',
|
|
|
|
author_email='micro-python@googlegroups.com',
|
|
|
|
maintainer='MicroPython Developers',
|
|
|
|
maintainer_email='micro-python@googlegroups.com',
|
|
|
|
license='Python',
|
|
|
|
py_modules=['uasyncio'])
|