##// END OF EJS Templates
AMISR modules to read hdf5 files and link to SignalChain Objects...
AMISR modules to read hdf5 files and link to SignalChain Objects Two examples: to read hdf5 files and show RTI and Spectra from specific Beam

File last commit:

r301:c56217e15a4c
r491:3acb3a6f21eb
Show More
setup.py
5 lines | 232 B | text/x-python | PythonLexer
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
setup(
cmdclass = {'build_ext': build_ext},
ext_modules = [Extension("cfunctions", ["cfunctions.pyx"])] )