Files
CoolProp/dev/scripts/setup.py
2014-05-14 12:46:24 +02:00

15 lines
325 B
Python

from distutils.core import setup
from Cython.Build import cythonize
import sys,numpy
import Cython
Cython.Compiler.Options.annotate = True
sys.argv += ['build_ext','--inplace']
setup(
name = "My hello app",
ext_modules = cythonize('summer.pyx'), # accepts a glob pattern
include_dirs = [numpy.get_include()]
)