From f1467e61c8bba645b9bb5aec94a1708b39be9201 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Thu, 8 May 2014 02:38:10 +0300 Subject: [PATCH] collections: Add setup metadata. --- collections/setup.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 collections/setup.py diff --git a/collections/setup.py b/collections/setup.py new file mode 100644 index 00000000..8bab5d59 --- /dev/null +++ b/collections/setup.py @@ -0,0 +1,18 @@ +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])