-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 816 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from setuptools import setup, find_packages
setup(
name="pave",
version="0.2.0",
description="Phoneme-Aware Voice Evaluator: batch TTS/VC evaluation toolkit",
author="许倪",
packages=find_packages(),
python_requires=">=3.9",
install_requires=[
"torch>=2.0.0",
"torchaudio>=2.0.0",
"transformers>=4.35.0",
"numpy>=1.24.0",
"pandas>=2.0.0",
"tqdm>=4.65.0",
"jiwer>=3.0.0",
"soundfile>=0.12.1",
"click>=8.1.0",
"rich>=13.0.0",
],
extras_require={
"signal": ["pesq>=0.0.4", "pystoi>=0.3.3", "scipy>=1.10.0"],
"en": ["phonemizer>=3.2.1"],
"zh": ["pypinyin>=0.49.0"],
},
entry_points={
"console_scripts": [
"pave=pave.cli.run:cli",
]
},
)