mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-12 15:38:29 -05:00
14 lines
321 B
Python
14 lines
321 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()]
|
|
)
|