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