diff options
author | INADA Naoki <songofacandy@gmail.com> | 2012-06-26 17:37:22 +0900 |
---|---|---|
committer | INADA Naoki <songofacandy@gmail.com> | 2012-06-26 17:37:22 +0900 |
commit | 06ed24a529eba164b23089a7653427f62dfb32e2 (patch) | |
tree | 54f641797641bede1fca1583a8c4644a978386af | |
parent | ebe4c1f4bc31bc1f47831d72819cac5a2a584604 (diff) | |
download | msgpack-python-06ed24a529eba164b23089a7653427f62dfb32e2.tar.gz |
Fix setup scripts.
Support _msgpack.cpp
-rw-r--r-- | MANIFEST.in | 2 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/MANIFEST.in b/MANIFEST.in index bf312d5..4e85759 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,5 @@ include setup.py include COPYING -recursive-include msgpack *.h *.c *.pyx +recursive-include msgpack *.h *.c *.pyx *.cpp recursive-include test *.py recursive-include test3 *.py @@ -37,7 +37,7 @@ if have_cython: cython_compiler.default_options) sdist.__init__(self, *args, **kwargs) else: - sources = ['msgpack/_msgpack.c'] + sources = ['msgpack/_msgpack.cpp'] for f in sources: if not os.path.exists(f): |