From 343f20cae97d9ddd666dd15bb6d20cc1f6d286ba Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Wed, 7 May 2014 23:11:36 +0300 Subject: [PATCH] dbm: Add dummy module. --- dbm/dbm.py | 0 dbm/setup.py | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 dbm/dbm.py create mode 100644 dbm/setup.py diff --git a/dbm/dbm.py b/dbm/dbm.py new file mode 100644 index 00000000..e69de29b diff --git a/dbm/setup.py b/dbm/setup.py new file mode 100644 index 00000000..51350cbb --- /dev/null +++ b/dbm/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 = 'dbm' + +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])