Skip to content

Commit

Permalink
add meta info to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vsergeev committed Nov 21, 2013
1 parent 301c47b commit 46d1ce2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 7 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
25 changes: 21 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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 <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. 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',
)

0 comments on commit 46d1ce2

Please sign in to comment.