prepare 0.2

This commit is contained in:
INADA Naoki 2012-06-27 18:05:35 +09:00
parent 06ed24a529
commit 288e820293
3 changed files with 70 additions and 23 deletions

View file

@ -1,6 +1,6 @@
#!/usr/bin/env python
# coding: utf-8
version = (0, 1, 14, 'dev')
version = (0, 2, 0, 'dev')
import os
import sys
@ -59,13 +59,10 @@ del sources, libraries
desc = 'MessagePack (de)serializer.'
long_desc = """MessagePack (de)serializer for Python.
What's MessagePack? (from http://msgpack.org/)
MessagePack is a binary-based efficient data interchange format that is
focused on high performance. It is like JSON, but very fast and small.
"""
f = open('README.rst')
long_desc = f.read()
f.close()
del f
setup(name='msgpack-python',
author='INADA Naoki',