Spaces:
Runtime error
Runtime error
glide-the
commited on
Commit
·
61590eb
1
Parent(s):
2965eaf
Add large files to Git LFS
Browse files
vits/monotonic_align/setup.py
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from distutils.core import setup
|
| 2 |
+
from Cython.Build import cythonize
|
| 3 |
+
import numpy
|
| 4 |
+
|
| 5 |
+
setup(
|
| 6 |
+
name='monotonic_align',
|
| 7 |
+
ext_modules=cythonize("core.pyx"),
|
| 8 |
+
include_dirs=[numpy.get_include()]
|
| 9 |
+
)
|