##// END OF EJS Templates
IO_Writer: default datatype was changed to 4 (float32), instead of 3 (int64).
IO_Writer: default datatype was changed to 4 (float32), instead of 3 (int64).

File last commit:

r301:c56217e15a4c
r627:7e89cdea8c41
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"])] )