From 6171fd59e785179bbc0f9405c47e1e8e3ae168f6 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sun, 22 Feb 2015 15:06:52 +0200 Subject: [PATCH] hashlib: Release 2.4.0-1. --- hashlib/metadata.txt | 6 +++--- hashlib/setup.py | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/hashlib/metadata.txt b/hashlib/metadata.txt index 34e7b20b..da6df32b 100644 --- a/hashlib/metadata.txt +++ b/hashlib/metadata.txt @@ -1,3 +1,3 @@ -srctype=dummy -type=module -version=0.0.1 +srctype=pypy +type=package +version=2.4.0-1 diff --git a/hashlib/setup.py b/hashlib/setup.py index de463a01..94b9295d 100644 --- a/hashlib/setup.py +++ b/hashlib/setup.py @@ -6,12 +6,12 @@ from setuptools import setup setup(name='micropython-hashlib', - version='0.0.1', - description='Implementation of basic hashlib functions 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='2.4.0-1', + description='PyPy hashlib module ported to MicroPython', + long_description='This is a module ported from PyPy 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='PyPy Developers', + author_email='pypy-dev@python.org', maintainer='MicroPython Developers', maintainer_email='micro-python@googlegroups.com', license='MIT',