2014-12-18 17:26:20 +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-12-18 17:26:20 +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-12-18 17:26:20 +00:00
|
|
|
|
|
|
|
setup(name='micropython-uasyncio.queues',
|
2016-12-08 11:45:55 +00:00
|
|
|
version='0.1.2',
|
2014-12-18 17:26:20 +00:00
|
|
|
description='uasyncio.queues module for MicroPython',
|
|
|
|
long_description='Port of asyncio.queues to uasyncio.',
|
2016-10-11 03:47:01 +00:00
|
|
|
url='https://github.com/micropython/micropython-lib',
|
2018-02-02 18:25:27 +00:00
|
|
|
author='micropython-lib Developers',
|
2014-12-18 17:26:20 +00:00
|
|
|
author_email='micro-python@googlegroups.com',
|
2018-02-02 18:25:27 +00:00
|
|
|
maintainer='micropython-lib Developers',
|
2014-12-18 17:26:20 +00:00
|
|
|
maintainer_email='micro-python@googlegroups.com',
|
|
|
|
license='MIT',
|
2018-02-02 18:30:52 +00:00
|
|
|
cmdclass={'sdist': sdist_upip.sdist},
|
2014-12-18 17:26:20 +00:00
|
|
|
packages=['uasyncio'],
|
|
|
|
install_requires=['micropython-uasyncio.core', 'micropython-collections.deque'])
|