rename _msgpack.pyx => _packer.pyx

This commit is contained in:
INADA Naoki 2012-12-11 22:05:00 +09:00
parent 171145e562
commit 280d56eb9b
3 changed files with 4 additions and 3 deletions

View file

@ -59,7 +59,7 @@ if have_cython:
else:
Sdist = sdist
sources = ['msgpack/_msgpack.cpp']
sources = ['msgpack/_packer.cpp']
libraries = []
if sys.platform == 'win32':
libraries.append('ws2_32')
@ -69,7 +69,7 @@ if sys.byteorder == 'big':
else:
macros = [('__LITTLE_ENDIAN__', '1')]
msgpack_mod = Extension('msgpack._msgpack',
msgpack_mod = Extension('msgpack._packer',
sources=sources,
libraries=libraries,
include_dirs=['.'],