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