From 1b8812ed65ab6234d5862924e8c5b4da4aec5c4b Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Fri, 9 May 2014 00:16:00 +0300 Subject: [PATCH] pprint: Add dummy module. --- pprint/pprint.py | 0 pprint/setup.py | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 pprint/pprint.py create mode 100644 pprint/setup.py diff --git a/pprint/pprint.py b/pprint/pprint.py new file mode 100644 index 00000000..e69de29b diff --git a/pprint/setup.py b/pprint/setup.py new file mode 100644 index 00000000..c8508b30 --- /dev/null +++ b/pprint/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 = 'pprint' + +setup(name='micropython-' + NAME, + version='0.0.0', + description=metadata.desc_dummy(NAME), + url=metadata.url, + author=metadata.author_upy_devels, + author_email=metadata.author_upy_devels_email, + license='MIT', + py_modules=[NAME])