1from setuptools import setup 2from Cython.Build import cythonize 3 4setup( 5 ext_modules = cythonize("search.pyx") 6)