2015-01-02 19:17:11 +00:00
|
|
|
import sys
|
|
|
|
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
2016-10-11 03:47:01 +00:00
|
|
|
# module instead of system's.
|
2015-01-02 19:17:11 +00:00
|
|
|
sys.path.pop(0)
|
|
|
|
from setuptools import setup
|
2016-10-11 03:47:01 +00:00
|
|
|
sys.path.append("..")
|
|
|
|
import optimize_upip
|
2015-01-02 19:17:11 +00:00
|
|
|
|
|
|
|
setup(name='micropython-cpython-uasyncio',
|
2016-10-11 03:47:01 +00:00
|
|
|
version='0.2.1',
|
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',
|
2016-10-11 03:47:01 +00:00
|
|
|
url='https://github.com/micropython/micropython-lib',
|
2015-01-02 19:17:11 +00:00
|
|
|
author='MicroPython Developers',
|
|
|
|
author_email='micro-python@googlegroups.com',
|
|
|
|
maintainer='MicroPython Developers',
|
|
|
|
maintainer_email='micro-python@googlegroups.com',
|
|
|
|
license='Python',
|
2016-10-11 03:47:01 +00:00
|
|
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
2015-01-02 19:17:11 +00:00
|
|
|
py_modules=['uasyncio'])
|