From 288e82029353e3c3256341c0e32d16ca32d33700 Mon Sep 17 00:00:00 2001 From: INADA Naoki Date: Wed, 27 Jun 2012 18:05:35 +0900 Subject: prepare 0.2 --- setup.py | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 3f8f9f8..5802c3c 100644 --- a/setup.py +++ b/setup.py @@ -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', -- cgit v1.2.1