From 038627f7945d60ba81ebbb044db658d7c03e7ca0 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Fri, 26 Jun 2015 12:29:34 +0300 Subject: [PATCH] pkgutil: Release 0.1. --- pkgutil/metadata.txt | 7 ++++--- pkgutil/setup.py | 9 +++++---- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/pkgutil/metadata.txt b/pkgutil/metadata.txt index 357bcc3b..6e4f1302 100644 --- a/pkgutil/metadata.txt +++ b/pkgutil/metadata.txt @@ -1,3 +1,4 @@ -srctype=dummy -type=module -version=0.0.0 +srctype = micropython-lib +type = module +version = 0.1 +depends = pkg_resources diff --git a/pkgutil/setup.py b/pkgutil/setup.py index 5aacc735..417a1c39 100644 --- a/pkgutil/setup.py +++ b/pkgutil/setup.py @@ -6,13 +6,14 @@ from setuptools import setup setup(name='micropython-pkgutil', - version='0.0.0', - description='Dummy pkgutil 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', + description='pkgutil 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', maintainer='MicroPython Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', - py_modules=['pkgutil']) + py_modules=['pkgutil'], + install_requires=['micropython-pkg_resources'])