From 3def1345fa7bab25c73e70ee52744c8be6b140a7 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Thu, 17 Apr 2014 01:29:02 +0300 Subject: [PATCH] warnings: Add setup metadata. --- warnings/setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 warnings/setup.py diff --git a/warnings/setup.py b/warnings/setup.py new file mode 100644 index 00000000..7c10462c --- /dev/null +++ b/warnings/setup.py @@ -0,0 +1,10 @@ +from distutils.core import setup + +setup(name='micropython-warnings', + version='0.0.1', + description='Dummy warnings package for MicroPython', + url='https://github.com/micropython/micropython/issues/405', + author='MicroPython Developers', + author_email='micro-python@googlegroups.com', + license='MIT', + py_modules=['warnings'])