mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
20 lines
669 B
Python
20 lines
669 B
Python
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'
|
|
])]
|
|
)
|