diff --git a/README.md b/README.md index 23b4a8c..a3bfacc 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,7 @@ 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 written in pure Python and is currently distributed as a single file: [umsgpack.py](umsgpack.py) - -Future releases may also provide a Python .egg package. +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 ## Examples diff --git a/setup.py b/setup.py index a2e6be5..de645aa 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,23 @@ from distutils.core import setup -setup(name='u-msgpack-python', - version='1.4', - py_modules=['umsgpack'], - ) + +setup( + name='u-msgpack-python', + version='1.4', + description='A lightweight msgpack serializer and deserializer written in pure Python.', + author='vsergeev', + 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.""", + classifiers=[ + "Development Status :: 5 - Production/Stable", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 3", + ], + license='MIT', + keywords='msgpack serialization deserialization', + )