kopia lustrzana https://github.com/micropython/micropython-lib
19 wiersze
510 B
Python
19 wiersze
510 B
Python
import sys
|
|
# Remove current dir from sys.path, otherwise distutils will peek up our
|
|
# module instead of system one.
|
|
sys.path.pop(0)
|
|
sys.path.insert(0, '..')
|
|
from setuptools import setup
|
|
import metadata
|
|
|
|
NAME = 'collections'
|
|
|
|
setup(name='micropython-' + NAME,
|
|
version='0.0.2',
|
|
description='Top-level collection package for MicroPython',
|
|
url=metadata.url,
|
|
author=metadata.author_upy_devels,
|
|
author_email=metadata.author_upy_devels_email,
|
|
license='MIT',
|
|
packages=[NAME])
|