Add files via upload

This commit is contained in:
SongtingLiu
2023-02-11 08:22:58 +08:00
committed by GitHub
parent dbeba3cede
commit d55f02b1e6
60 changed files with 26081 additions and 0 deletions
+9
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()]
)