From 7e9acd821113c7e4b4c06572ee4d932a3cab04a3 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Fri, 9 May 2014 04:59:28 +0300 Subject: [PATCH] gzip: Add dummy module. --- gzip/gzip.py | 0 gzip/setup.py | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 gzip/gzip.py create mode 100644 gzip/setup.py diff --git a/gzip/gzip.py b/gzip/gzip.py new file mode 100644 index 00000000..e69de29b diff --git a/gzip/setup.py b/gzip/setup.py new file mode 100644 index 00000000..4007b65c --- /dev/null +++ b/gzip/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 = 'gzip' + +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])