Spaces:
Running
Running
Yurii Paniv commited on
Commit ·
e883b68
1
Parent(s): 8c4d22a
#8 Add setup.py for package
Browse files
setup.py
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python
|
| 2 |
+
from setuptools import setup, find_packages
|
| 3 |
+
|
| 4 |
+
setup(name='ukrainian-tts',
|
| 5 |
+
version='3.0',
|
| 6 |
+
description='Ukrainian TTS using Coqui TTS',
|
| 7 |
+
author='Yurii Paniv',
|
| 8 |
+
author_email='mr.robinhad@gmail.com',
|
| 9 |
+
url='https://github.com/robinhad/ukrainian-tts',
|
| 10 |
+
packages=find_packages(),
|
| 11 |
+
python_requires='>3.6.0',
|
| 12 |
+
install_requires=[
|
| 13 |
+
"torch>=1.9",
|
| 14 |
+
"TTS==0.8.0",
|
| 15 |
+
"ukrainian-word-stress==1.0.1",
|
| 16 |
+
"ukrainian_accentor @ git+https://github.com/egorsmkv/ukrainian-accentor.git@5b7971c4e135e3ff3283336962e63fc0b1c80f4c"
|
| 17 |
+
],
|
| 18 |
+
)
|