mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-10-19 20:03:16 +00:00
merge changing include path
This commit is contained in:
commit
aa5a199c56
4 changed files with 11 additions and 6 deletions
7
setup.py
7
setup.py
|
@ -1,8 +1,13 @@
|
|||
from distutils.core import setup, Extension
|
||||
import os
|
||||
|
||||
version = '0.0.1'
|
||||
|
||||
msgpack_mod = Extension('msgpack', sources=['msgpack.cpp'])
|
||||
PACKAGE_ROOT = os.getcwdu()
|
||||
INCLUDE_PATH = os.path.join(PACKAGE_ROOT, 'include')
|
||||
msgpack_mod = Extension('msgpack',
|
||||
sources=['msgpack.cpp'],
|
||||
include_dirs=[INCLUDE_PATH])
|
||||
|
||||
desc = 'MessagePack serializer/desirializer.'
|
||||
long_desc = desc + """
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue