source: dynamico_lmdz/simple_physics/phyparam/python/setup.py @ 4245

Last change on this file since 4245 was 4236, checked in by dubos, 5 years ago

simple_physics : some Python bindings

File size: 377 bytes
Line 
1from distutils.core import setup
2from distutils.extension import Extension
3from Cython.Build import cythonize
4
5setup( name = "Wrapper to simple physics package",
6       ext_modules = cythonize([ Extension("phyparam",["phyparam.pyx"], 
7                                           libraries=['phyparam'],
8                                           library_dirs=['.'])] )
9       )
Note: See TracBrowser for help on using the repository browser.