-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
64 lines (63 loc) · 1.57 KB
/
setup.py
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
from setuptools import setup, find_packages
setup(
name='versa-speech-audio-toolkit',
version='0.0.1',
packages=find_packages(),
install_requires=[
"audioread",
"ci-sdr",
"Cython",
"Distance",
"editdistance",
"einops",
"espnet",
"espnet-tts-frontend",
"fast-bss-eval",
"fastdtw",
"huggingface-hub",
"hydra-core",
"idna",
"importlib-metadata",
"kaggle",
"kaldiio",
"lazy_loader",
"Levenshtein",
"librosa",
"mir-eval",
"omegaconf",
"onnxruntime",
"openai-whisper",
"opt-einsum",
"pesq",
"protobuf",
"pypesq @ git+https://github.com/vBaiCai/python-pesq.git",
"pysptk",
"pystoi",
"python-dateutil",
"pyworld",
"pyyaml",
"rapidfuzz",
"resampy",
"safetensors",
"scikit-learn",
"sentencepiece",
"setuptools",
"soundfile",
"speechmos",
"sympy",
"threadpoolctl",
"tokenizers",
"torch",
"torch-complex",
"torchaudio",
"s3prl",
"transformers>=4.36.2",
"espnet_model_zoo",
"discrete-speech-metrics @ git+https://github.com/Takaaki-Saeki/[email protected]",
],
author='Jiatong Shi',
author_email='[email protected]',
description='A package for versatile evaluation of speech and audio',
url='https://github.com/shinjiwlab/versa.git',
keywords='speech metrics',
)