Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

make setup file for cython

from setuptools import setup
from Cython.Build import cythonize

setup(
    ext_modules=cythonize("fib.pyx"),
)
Source by cython.readthedocs.io #
 
PREVIOUS NEXT
Tagged: #setup #file #cython
ADD COMMENT
Topic
Name
9+1 =