Spaces:
Running
on
Zero
Running
on
Zero
| """Build Cython extensions (DP alignment core).""" | |
| from setuptools import setup, Extension | |
| from Cython.Build import cythonize | |
| extensions = [ | |
| Extension( | |
| "src._dp_core", | |
| ["src/_dp_core.pyx"], | |
| ), | |
| ] | |
| setup( | |
| ext_modules=cythonize(extensions, language_level="3"), | |
| ) | |