Created
April 12, 2017 11:25
-
-
Save kor01/dbdca5b3b8a34b05e17938969c6101d5 to your computer and use it in GitHub Desktop.
[create extension]build a cython extension #tags: cython
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from Cython.Build import cythonize | |
from distutils.core import setup, Extension | |
ext = Extension(name="wrap_fib", | |
sources=["cfib.c", "wrap_fib.pyx”]) | |
setup(ext_modules=cythonize(ext)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment