mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-10-29 00:24:13 +00:00
Release msgpack-python 0.1.3
This commit is contained in:
parent
316a0fa7b9
commit
4f41080b94
1 changed files with 4 additions and 8 deletions
12
setup.py
12
setup.py
|
|
@ -14,7 +14,7 @@ except ImportError:
|
||||||
from distutils.command.build_ext import build_ext
|
from distutils.command.build_ext import build_ext
|
||||||
have_cython = False
|
have_cython = False
|
||||||
|
|
||||||
version = '0.2.0dev'
|
version = '0.1.3'
|
||||||
|
|
||||||
# take care of extension modules.
|
# take care of extension modules.
|
||||||
if have_cython:
|
if have_cython:
|
||||||
|
|
@ -42,11 +42,7 @@ del sources
|
||||||
|
|
||||||
|
|
||||||
desc = 'MessagePack (de)serializer.'
|
desc = 'MessagePack (de)serializer.'
|
||||||
long_desc = desc + """
|
long_desc = """MessagePack (de)serializer for Python.
|
||||||
|
|
||||||
MessagePack_ (de)serializer for Python.
|
|
||||||
|
|
||||||
.. _MessagePack: http://msgpack.sourceforge.jp/
|
|
||||||
|
|
||||||
What's MessagePack? (from http://msgpack.sourceforge.jp/)
|
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.
|
focused on high performance. It is like JSON, but very fast and small.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
setup(name='msgpack',
|
setup(name='msgpack-python',
|
||||||
author='INADA Naoki',
|
author='INADA Naoki',
|
||||||
author_email='songofacandy@gmail.com',
|
author_email='songofacandy@gmail.com',
|
||||||
version=version,
|
version=version,
|
||||||
|
|
@ -63,7 +59,7 @@ setup(name='msgpack',
|
||||||
packages=['msgpack'],
|
packages=['msgpack'],
|
||||||
description=desc,
|
description=desc,
|
||||||
long_description=long_desc,
|
long_description=long_desc,
|
||||||
url="http://msgpack.sourceforge.jp/",
|
url='http://msgpack.sourceforge.jp/',
|
||||||
download_url='http://pypi.python.org/pypi/msgpack/',
|
download_url='http://pypi.python.org/pypi/msgpack/',
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 4 - Beta',
|
'Development Status :: 4 - Beta',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue