From 680e52d89e8cf3bf1eb6394340cc43899a23aa9e Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Tue, 6 Jan 2015 01:04:50 +0200 Subject: [PATCH] timeit: Release 3.3.3-1. --- timeit/metadata.txt | 4 ++-- timeit/setup.py | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/timeit/metadata.txt b/timeit/metadata.txt index 976088c8..950962ae 100644 --- a/timeit/metadata.txt +++ b/timeit/metadata.txt @@ -1,3 +1,3 @@ -srctype = dummy +srctype = cpython type = module -version = 0.0.0 +version = 3.3.3-1 diff --git a/timeit/setup.py b/timeit/setup.py index 7bdbf636..9284aedf 100644 --- a/timeit/setup.py +++ b/timeit/setup.py @@ -6,13 +6,13 @@ from setuptools import setup setup(name='micropython-timeit', - version='0.0.0', - description='Dummy timeit 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='3.3.3-1', + description='CPython timeit 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=['timeit'])