https://github.com/open-mmlab/Amphion
Tip revision: a4c23e2e1f15e4be0b0c7194e6b69a82a4bb4a07 authored by Xueyao Zhang on 18 December 2023, 14:14:33 UTC
Amphion v0.1 Release (#39)
Amphion v0.1 Release (#39)
Tip revision: a4c23e2
setup.py
# Copyright (c) 2023 Amphion.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
# This code is modified from https://github.com/jaywalnut310/vits/
from distutils.core import setup, Extension
from Cython.Build import cythonize
import numpy
extension = Extension(
name="monotonic_align.core",
sources=["core.pyx"],
include_dirs=[numpy.get_include()],
# Define additional arguments if needed
)
setup(
name="monotonic_align",
ext_modules=cythonize([extension]),
)
