Generates XML files for DeltaPro from Amazon invoices
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
510 B

from distutils.core import setup, Extension
module = Extension('libxlpy'
, sources = [
'libxlpy.c',
'book.c',
'sheet.c',
'format.c',
'font.c'
]
, extra_compile_args = ['-I../../include_c']
, extra_link_args = ['-L../../lib64', '-lxl', '-Wl,-rpath,../../lib64']
)
setup (name = 'libxlpy'
, version = '1.0'
, description = 'libxl python wrapper'
, ext_modules = [module]
)