From 719d2b2081940f51d332e1ca60c16aad592630c3 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 21 Jun 2014 03:03:19 +0300 Subject: [PATCH] sqlite3: Add metadata. --- sqlite3/metadata.txt | 4 ++++ sqlite3/setup.py | 18 ++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 sqlite3/metadata.txt create mode 100644 sqlite3/setup.py diff --git a/sqlite3/metadata.txt b/sqlite3/metadata.txt new file mode 100644 index 00000000..4f7d8418 --- /dev/null +++ b/sqlite3/metadata.txt @@ -0,0 +1,4 @@ +srctype = micropython-lib +type = module +version = 0.2 +author = Paul Sokolovsky diff --git a/sqlite3/setup.py b/sqlite3/setup.py new file mode 100644 index 00000000..12a6fdf3 --- /dev/null +++ b/sqlite3/setup.py @@ -0,0 +1,18 @@ +import sys +# Remove current dir from sys.path, otherwise setuptools will peek up our +# module instead of system. +sys.path.pop(0) +from setuptools import setup + + +setup(name='micropython-sqlite3', + version='0.2', + description='sqlite3 module for MicroPython', + long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", + url='https://github.com/micropython/micropython/issues/405', + author='Paul Sokolovsky', + author_email='micro-python@googlegroups.com', + maintainer='MicroPython Developers', + maintainer_email='micro-python@googlegroups.com', + license='MIT', + py_modules=['sqlite3'])