mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-08-10 02:22:17 +00:00
13 lines
307 B
Python
13 lines
307 B
Python
# Copied from
|
|
# https://github.com/shivammehta25/Matcha-TTS/blob/main/matcha/utils/monotonic_align/setup.py
|
|
from distutils.core import setup
|
|
|
|
import numpy
|
|
from Cython.Build import cythonize
|
|
|
|
setup(
|
|
name="monotonic_align",
|
|
ext_modules=cythonize("core.pyx"),
|
|
include_dirs=[numpy.get_include()],
|
|
)
|