diff options
| author | Naoki INADA <inada-n@klab.jp> | 2010-04-29 07:52:32 +0900 |
|---|---|---|
| committer | Naoki INADA <inada-n@klab.jp> | 2010-04-29 07:52:32 +0900 |
| commit | 833ee6484c731d0419a9cbd122a499f2ae77ae6b (patch) | |
| tree | bfc145a79fa9af85eacb7f40d76337f9667efef9 | |
| parent | dda3d24bca8c00f58598523c60902c89581c8da2 (diff) | |
| download | msgpack-python-0.1.3.tar.gz | |
Release msgpack-python 0.1.30.1.3
| -rwxr-xr-x | python/setup.py | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/python/setup.py b/python/setup.py index 2feaff9..27dbc48 100755 --- a/python/setup.py +++ b/python/setup.py @@ -14,7 +14,7 @@ except ImportError: from distutils.command.build_ext import build_ext have_cython = False -version = '0.2.0dev' +version = '0.1.3' # take care of extension modules. if have_cython: @@ -42,11 +42,7 @@ del sources desc = 'MessagePack (de)serializer.' -long_desc = desc + """ - -MessagePack_ (de)serializer for Python. - -.. _MessagePack: http://msgpack.sourceforge.jp/ +long_desc = """MessagePack (de)serializer for Python. What's MessagePack? (from http://msgpack.sourceforge.jp/) @@ -54,7 +50,7 @@ What's MessagePack? (from http://msgpack.sourceforge.jp/) focused on high performance. It is like JSON, but very fast and small. """ -setup(name='msgpack', +setup(name='msgpack-python', author='INADA Naoki', author_email='songofacandy@gmail.com', version=version, @@ -63,7 +59,7 @@ setup(name='msgpack', packages=['msgpack'], description=desc, long_description=long_desc, - url="http://msgpack.sourceforge.jp/", + url='http://msgpack.sourceforge.jp/', download_url='http://pypi.python.org/pypi/msgpack/', classifiers=[ 'Development Status :: 4 - Beta', |
