From 47fd37fc729877965b8c62fc802f30e3450c1e5e Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Mon, 19 May 2014 23:46:49 +0300 Subject: [PATCH] stat: Take from CPython 3.3.3. --- stat/setup.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/stat/setup.py b/stat/setup.py index 4634c7ab..369f466a 100644 --- a/stat/setup.py +++ b/stat/setup.py @@ -6,13 +6,13 @@ from setuptools import setup setup(name='micropython-stat', - version='0.0.1', - description='Dummy stat 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.5', + description='CPython stat 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='MicroPython Developers', - author_email='micro-python@googlegroups.com', + author='CPython Developers', + author_email='python-dev@python.org', maintainer='MicroPython Developers', maintainer_email='micro-python@googlegroups.com', - license='MIT', + license='Python', py_modules=['stat'])