mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-17 01:48:06 -05:00
* autopep8 rule-groups E101,W1,W2,W3 * autopep8 with rule group E3 (blank lines) autopep8 --in-place --recursive --max-line-length=200 --exclude="externals" --select="E101,E3,W1,W2,W3" . * tabs and space W191 * autopep8 aggressive
14 lines
324 B
Python
14 lines
324 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()]
|
|
)
|