mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-14 08:28:03 -05:00
15 lines
325 B
Python
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()]
|
|
)
|
|
|