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

Last change on this file since 626 was 626, checked in by dubos, 7 years ago

devel : some improvements to build Python part

File size: 375 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("xios",["xios.pyx"],libraries=["xios"]),
7            Extension("unstructured",["unstructured.pyx"],libraries=["icosa","xios"])
8            ])
9        )
Note: See TracBrowser for help on using the repository browser.