-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (40 loc) · 1017 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "VoPho"
version = "0.0.12"
description = "An easy to use Multilingual phonemization meta-library"
readme = "README.md"
authors = [
{ name = "ShoukanLabs." }
]
keywords = ["Phonemization", "TTS", "Multilingual"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
requires-python = ">=3.6"
dependencies = [
"ruphon",
"ruaccent==1.5.8",
"cn2an==0.5.22",
"colorama==0.4.6",
"termcolor==2.4.0",
"openphonemizer==0.1.2",
"unidic-lite==1.0.8",
"mecab-python3==1.0.9",
"cutlet==0.4.0",
"jieba==0.42.1",
"pypinyin==0.52.0",
"pythainlp==5.0.4",
"torch>=2.0.0",
"langdetect==1.0.9",
"lingua-language-detector==2.0.2",
"pywsd==1.2.5",
"sentence-transformers",
"scikit-learn"
]
[project.urls]
homepage = "https://github.com/ShoukanLabs/VoPho"