diff options
| author | Naoki INADA <inada-n@klab.jp> | 2009-07-13 14:27:57 +0900 |
|---|---|---|
| committer | Naoki INADA <inada-n@klab.jp> | 2009-07-13 14:27:57 +0900 |
| commit | 294e3fe7ab01ef9273b364b0d3d9df4e9b275158 (patch) | |
| tree | b0d3006c9fc9e5fefba8a6bda8839e22b84b3384 /python/setup.py | |
| parent | e5c49dae13b26f2155dffffbc4e9915badbcecfb (diff) | |
| download | msgpack-python-294e3fe7ab01ef9273b364b0d3d9df4e9b275158.tar.gz | |
Add setup script for distribution.
Diffstat (limited to 'python/setup.py')
| -rwxr-xr-x | python/setup.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/python/setup.py b/python/setup.py index 255e0db..c0d121b 100755 --- a/python/setup.py +++ b/python/setup.py @@ -2,13 +2,14 @@ # coding: utf-8 from distutils.core import setup, Extension -from Cython.Distutils import build_ext +#from Cython.Distutils import build_ext import os version = '0.1.0' msgpack_mod = Extension('msgpack._msgpack', - sources=['msgpack/_msgpack.pyx'] + #sources=['msgpack/_msgpack.pyx'] + sources=['msgpack/_msgpack.c'] ) desc = 'MessagePack (de)serializer.' @@ -28,7 +29,7 @@ setup(name='msgpack', author='Naoki INADA', author_email='songofacandy@gmail.com', version=version, - cmdclass={'build_ext': build_ext}, + #cmdclass={'build_ext': build_ext}, ext_modules=[msgpack_mod], packages=['msgpack'], description=desc, |
