This commit is contained in:
rcell
2023-07-21 12:12:35 +08:00
parent ae26c0d657
commit 3604247c92
34 changed files with 134640 additions and 0 deletions

9
monotonic_align/setup.py Normal file
View File

@@ -0,0 +1,9 @@
from distutils.core import setup
from Cython.Build import cythonize
import numpy
setup(
name = 'monotonic_align',
ext_modules = cythonize("core.pyx"),
include_dirs=[numpy.get_include()]
)