fvid/fvid/cythonizer.py

7 lines
271 B
Python
Raw Normal View History

2020-10-13 14:20:00 +02:00
#cython: language_level = 3
from distutils.core import Extension, setup
from Cython.Build import cythonize
ext = Extension(name="fvid_cython", sources=["fvid_cython.pyx"])
setup(ext_modules=cythonize(ext, compiler_directives={'language_level': 3, 'infer_types': True}))