https://github.com/CoolProp/CoolProp
Raw File
Tip revision: 84897ce7a110a70ba2229e7a1f5d17ea03efd068 authored by Jorrit Wronski on 16 December 2022, 12:59:36 UTC
use no version number at all to fix the source build
Tip revision: 84897ce
setup.py
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()]
)
back to top