source: codes/icosagcm/devel/Python/src/setup.py @ 694

Last change on this file since 694 was 694, checked in by dubos, 6 years ago

devel/unstructured : higher-level interface to XIOS

File size: 377 bytes
RevLine 
[615]1from distutils.core import setup
[626]2from distutils.extension import Extension
[615]3from Cython.Build import cythonize
4setup(  name = "DYNAMICO kernels for unstructured mesh",
[626]5        ext_modules = cythonize([
[694]6            Extension("cxios",["cxios.pyx"],libraries=["xios"]),
[626]7            Extension("unstructured",["unstructured.pyx"],libraries=["icosa","xios"])
8            ])
9        )
Note: See TracBrowser for help on using the repository browser.