From 542bfca6377206e595a4eee1f9a5c395fecfbcfc Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Tue, 20 May 2014 22:36:54 +0300 Subject: [PATCH] quopri: Add metadata. --- quopri/metadata.txt | 3 +++ quopri/setup.py | 18 ++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 quopri/metadata.txt create mode 100644 quopri/setup.py diff --git a/quopri/metadata.txt b/quopri/metadata.txt new file mode 100644 index 00000000..6db50631 --- /dev/null +++ b/quopri/metadata.txt @@ -0,0 +1,3 @@ +srctype=cpython +type=module +version=0.5 diff --git a/quopri/setup.py b/quopri/setup.py new file mode 100644 index 00000000..5d7753a3 --- /dev/null +++ b/quopri/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-quopri', + version='0.5', + description='CPython quopri module ported to MicroPython', + long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.', + url='https://github.com/micropython/micropython/issues/405', + author='CPython Developers', + author_email='python-dev@python.org', + maintainer='MicroPython Developers', + maintainer_email='micro-python@googlegroups.com', + license='Python', + py_modules=['quopri'])