summaryrefslogtreecommitdiff
path: root/setup.py
blob: e5651a069ad27fb8a84930aef4d6a595ebb666b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from distutils.core import setup, Extension

version = '0.0.1'

msgpack_mod = Extension('msgpack', sources=['msgpack.c'])

desc = 'MessagePack serializer/desirializer.'
long_desc = desc + """

Python binding of MessagePack_.

This package is under development.

.. _MessagePack: http://msgpack.sourceforge.jp/

What's MessagePack? (from http://msgpack.sourceforge.jp/)

 MessagePack is a binary-based efficient data interchange format that is
 focused on high performance. It is like JSON, but very fast and small.
"""

setup(name='msgpack',
      author='Naoki INADA',
      author_email='songofacandy@gmail.com',
      version=version,
      ext_modules=[msgpack_mod],
      description=desc,
      long_description=long_desc,
      )