From 1d69a4a0d540a344b1e93b339a4a7c751f2960ac Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Tue, 22 Apr 2014 00:28:58 +0300 Subject: [PATCH] errno: Add setup metadata. --- errno/setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 errno/setup.py diff --git a/errno/setup.py b/errno/setup.py new file mode 100644 index 00000000..ca557a89 --- /dev/null +++ b/errno/setup.py @@ -0,0 +1,10 @@ +from distutils.core import setup + +setup(name='micropython-errno', + version='0.1', + description='errno module for MicroPython', + url='https://github.com/micropython/micropython/issues/405', + author='MicroPython Developers', + author_email='micro-python@googlegroups.com', + license='MIT', + py_modules=['errno'])