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
Line 
1from distutils.core import setup
2from distutils.extension import Extension
3from Cython.Build import cythonize
4setup(  name = "DYNAMICO kernels for unstructured mesh",
5        ext_modules = cythonize([
6            Extension("cxios",["cxios.pyx"],libraries=["xios"]),
7            Extension("unstructured",["unstructured.pyx"],libraries=["icosa","xios"])
8            ])
9        )
Note: See TracBrowser for help on using the repository browser.