From 833efb514446b45066f4e2d9c29e7c3c18a1c578 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Tue, 8 Apr 2014 19:32:42 +0300 Subject: [PATCH] re-pcre: Add setup metadata. --- re-pcre/setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 re-pcre/setup.py diff --git a/re-pcre/setup.py b/re-pcre/setup.py new file mode 100644 index 00000000..cb623eda --- /dev/null +++ b/re-pcre/setup.py @@ -0,0 +1,10 @@ +from distutils.core import setup + +setup(name='micropython-re-pcre', + version='0.0.1', + description='re module for MicroPython, based on PCRE and FFI', + url='https://github.com/micropython/micropython/issues/405', + author='Paul Sokolovsky', + author_email='micro-python@googlegroups.com', + license='MIT', + py_modules=['re'])