xlnt/arrow/xlntpyarrow/setup.py

20 lines
669 B
Python
Raw Normal View History

2017-06-28 22:08:39 +08:00
from distutils.core import setup, Extension
setup(name='xlntpyarrow',
include_dirs = [
'C:/Users/Thomas/Development/xlnt/arrow/xlntarrow',
'C:/Users/Thomas/Development/xlnt/arrow/xlntpyarrow',
'C:/Users/Thomas/Miniconda3/Library/include'],
ext_modules=[Extension("xlntpyarrow", ["xlntpyarrow.cpp"],
libraries = [
'arrow',
'xlntarrow',
'xlnt'
],
library_dirs = [
'C:/Users/Thomas/Miniconda3/Library/lib',
'C:/Users/Thomas/Development/xlnt/build/arrow/xlntarrow/Release',
'C:/Users/Thomas/Development/xlnt/build/source/Release'
])]
2017-06-28 22:08:39 +08:00
)