mirror of https://github.com/coqui-ai/TTS.git
38 lines
1.5 KiB
Python
38 lines
1.5 KiB
Python
#!/usr/bin/env python
|
|
# ,*++++++*, ,*++++++*,
|
|
# *++. .+++ *++. .++*
|
|
# *+* ,++++* *+* *+* ,++++, *+*
|
|
# ,+, .++++++++++* ,++,,,,*+, ,++++++++++. *+,
|
|
# *+. .++++++++++++..++ *+.,++++++++++++. .+*
|
|
# .+* ++++++++++++.*+, .+*.++++++++++++ *+,
|
|
# .++ *++++++++* ++, .++.*++++++++* ++,
|
|
# ,+++*. . .*++, ,++*. .*+++*
|
|
# *+, .,*++**. .**++**. ,+*
|
|
# .+* *+,
|
|
# *+. Coqui .+*
|
|
# *+* +++ TTS +++ *+*
|
|
# .+++*. . . *+++.
|
|
# ,+* *+++*... ...*+++* *+,
|
|
# .++. .""""+++++++****+++++++"""". ++.
|
|
# ,++. .++,
|
|
# .++* *++.
|
|
# *+++, ,+++*
|
|
# .,*++++::::::++++*,.
|
|
# ``````
|
|
|
|
import numpy
|
|
from Cython.Build import cythonize
|
|
from setuptools import Extension, setup
|
|
|
|
exts = [
|
|
Extension(
|
|
name="TTS.tts.utils.monotonic_align.core",
|
|
sources=["TTS/tts/utils/monotonic_align/core.pyx"],
|
|
)
|
|
]
|
|
setup(
|
|
include_dirs=numpy.get_include(),
|
|
ext_modules=cythonize(exts, language_level=3),
|
|
zip_safe=False,
|
|
)
|