diff options
-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): |