fvid/fvid/cythonizer.py

8 lines
390 B
Python
Raw Normal View History

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