From e2928ac0292bfc693fc74031f9601e428ad068f2 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Thu, 16 Jul 2015 13:16:14 +0300 Subject: [PATCH] inspect: Release 0.1.1. --- inspect/metadata.txt | 6 +++--- inspect/setup.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/inspect/metadata.txt b/inspect/metadata.txt index 753432db..a90b2ef3 100644 --- a/inspect/metadata.txt +++ b/inspect/metadata.txt @@ -1,3 +1,3 @@ -srctype=dummy -type=module -version=0.1 +srctype = micropython-lib +type = module +version = 0.1.1 diff --git a/inspect/setup.py b/inspect/setup.py index b242119c..8581970b 100644 --- a/inspect/setup.py +++ b/inspect/setup.py @@ -6,9 +6,9 @@ from setuptools import setup setup(name='micropython-inspect', - version='0.1', - description='Dummy inspect module for MicroPython', - long_description='This is a dummy implementation of a module for MicroPython standard library.\nIt contains zero or very little functionality, and primarily intended to\navoid import errors (using idea that even if an application imports a\nmodule, it may be not using it onevery code path, so may work at least\npartially). It is expected that more complete implementation of the module\nwill be provided later. Please help with the development if you are\ninterested in this module.', + version='0.1.1', + description='inspect 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='MicroPython Developers', author_email='micro-python@googlegroups.com',