summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorNaoki INADA <inada-n@klab.jp>2009-07-13 14:27:57 +0900
committerNaoki INADA <inada-n@klab.jp>2009-07-13 14:27:57 +0900
commit7247238873d75e30b5d4d823bb39869326e89f6a (patch)
treeee6e38beaf79cb0a66d825fe88a6fb16380cc7f3 /setup.py
parent2d885ad22afa24c5fbf62b5cf0d5970f4a4a2ff7 (diff)
downloadmsgpack-python-7247238873d75e30b5d4d823bb39869326e89f6a.tar.gz
Add setup script for distribution.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index 255e0db..c0d121b 100755
--- a/setup.py
+++ b/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,