cython working

This commit is contained in:
ltcptgeneral
2019-04-08 09:16:26 -05:00
parent 0c47283dd5
commit aa107249fd
9 changed files with 36 additions and 36 deletions
File diff suppressed because it is too large Load Diff
Binary file not shown.
File diff suppressed because it is too large Load Diff
+2
View File
@@ -0,0 +1,2 @@
python setup.py build_ext --inplace
pause
+5
View File
@@ -0,0 +1,5 @@
from distutils.core import setup
from Cython.Build import cythonize
setup(name='analysis',
ext_modules=cythonize("analysis.py"))