From 7e74f8a66c15983f0a3f2b9dedfb8b4b3545c989 Mon Sep 17 00:00:00 2001 From: Vanya Sergeev Date: Fri, 22 Nov 2013 11:21:16 -0800 Subject: [PATCH] clean up description --- README.md | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a3bfacc..9a705e7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # u-msgpack-python v1.4 -u-msgpack-python is a lightweight [MessagePack](https://github.com/msgpack/msgpack) serializer and deserializer module, compatible with both Python 2 and Python 3. u-msgpack-python is fully compliant with the latest [MessagePack specification](https://github.com/msgpack/msgpack/blob/master/spec.md), as of September 29, 2013. In particular, it supports the new binary, UTF-8 string, and application ext types. +u-msgpack-python is a lightweight [MessagePack](http://msgpack.org/) serializer and deserializer module, compatible with both Python 2 and Python 3. u-msgpack-python is fully compliant with the latest [MessagePack specification](https://github.com/msgpack/msgpack/blob/master/spec.md). In particular, it supports the new binary, UTF-8 string, and application ext types. u-msgpack-python is written in pure Python and is currently distributed as a single file: [umsgpack.py](umsgpack.py) and on PyPI: https://pypi.python.org/pypi/u-msgpack-python diff --git a/setup.py b/setup.py index de645aa..9dec3a3 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ author_email='vsergeev at gmail', url='https://github.com/vsergeev/u-msgpack-python', py_modules=['umsgpack'], - long_description="""u-msgpack-python is a lightweight `MessagePack `_ serializer and deserializer module, compatible with both Python 2 and Python 3. u-msgpack-python is fully compliant with the latest `MessagePack specification `_, as of September 29, 2013. In particular, it supports the new binary, UTF-8 string, and application ext types. See https://github.com/vsergeev/u-msgpack-python for more information.""", + long_description="""u-msgpack-python is a lightweight `MessagePack `_ serializer and deserializer module, compatible with both Python 2 and Python 3. u-msgpack-python is fully compliant with the latest `MessagePack specification `_. In particular, it supports the new binary, UTF-8 string, and application ext types. See https://github.com/vsergeev/u-msgpack-python for more information.""", classifiers=[ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: MIT License",