2014-10-23 22:00:53 +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.
|
2014-10-23 22:00:53 +00:00
|
|
|
sys.path.pop(0)
|
|
|
|
from setuptools import setup
|
2016-10-11 03:47:01 +00:00
|
|
|
sys.path.append("..")
|
2018-02-02 18:30:52 +00:00
|
|
|
import sdist_upip
|
2014-10-23 22:00:53 +00:00
|
|
|
|
|
|
|
setup(name='micropython-uasyncio.core',
|
2018-01-07 08:44:13 +00:00
|
|
|
version='1.7.1',
|
2017-10-28 19:52:15 +00:00
|
|
|
description='Lightweight asyncio-like library for MicroPython, built around native Python coroutines. (Core event loop).',
|
|
|
|
long_description='Lightweight asyncio-like library for MicroPython, built around native Python coroutines. (Core event loop).',
|
2016-10-11 03:47:01 +00:00
|
|
|
url='https://github.com/micropython/micropython-lib',
|
2014-10-23 22:00:53 +00:00
|
|
|
author='Paul Sokolovsky',
|
|
|
|
author_email='micro-python@googlegroups.com',
|
2018-02-02 18:25:27 +00:00
|
|
|
maintainer='micropython-lib Developers',
|
2014-10-23 22:00:53 +00:00
|
|
|
maintainer_email='micro-python@googlegroups.com',
|
|
|
|
license='MIT',
|
2018-02-02 18:30:52 +00:00
|
|
|
cmdclass={'sdist': sdist_upip.sdist},
|
2017-10-27 23:17:24 +00:00
|
|
|
packages=['uasyncio'])
|