Skip to content

Instantly share code, notes, and snippets.

@kor01
Created April 12, 2017 11:25
Show Gist options
  • Save kor01/dbdca5b3b8a34b05e17938969c6101d5 to your computer and use it in GitHub Desktop.
Save kor01/dbdca5b3b8a34b05e17938969c6101d5 to your computer and use it in GitHub Desktop.
[create extension]build a cython extension #tags: cython
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