I would like to cythonize faster. Code for one .pyx is
from distutils.core import setup
from Cython.Build import cythonize
setup(
ext_modules = cythonize("MyFile.pyx")
)
What if i want to cythonize
several files with ext .pyx, that i will call by their name
all .pyx files in a folder
What would be python code for the setup.py in both cases ?