-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
73 lines (67 loc) · 1.56 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tool.poetry]
name = "ttsclient"
version = "1.0.4"
description = ""
authors = ["wok <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10,<3.13"
fire = "0.6.0"
pythonnet = "3.0.3"
numpy = "1.26.4"
pytorch-lightning = "2.4.0"
matplotlib = "3.9.1.post1"
requests = "2.32.3"
einops = "0.8.0"
langsegment = "0.3.3"
transformers = "4.44.0"
cn2an = "0.5.22"
pypinyin = "0.52.0"
jieba-fast = "0.53"
librosa = "0.10.2.post1"
scipy = "1.14.0"
pyopenjtalk = "0.3.4"
fastapi = "0.112.0"
portpicker = "1.6.0"
uvicorn = "0.30.5"
python-socketio = "5.11.3"
python-multipart = "0.0.9"
pyopenssl = "24.2.1"
aioquic = "1.2.0"
fastapi-cors = "0.0.6"
ngrok = "1.4.0"
uuid = "1.30"
wordsegment = "1.3.1"
g2p-en = "2.1.0"
jamo = "0.4.1"
ko-pron = "1.3"
g2pk2 = "0.0.3"
g2pw = "0.1.1"
opencc = "1.1.9"
pyjyutping = "1.0.0"
simple-performance-timer = "0.1.3"
torch = "2.3.1"
onnx = "1.16.2"
torchmetrics = "1.4.2"
onnxsim = "0.4.36"
onnxruntime ="1.19.2"
[tool.poetry.group.dev.dependencies]
pip-licenses = "^4.4.0"
toml = "0.10.2"
types-requests = "^2.31.0.20240406"
pytest = "^8.1.1"
types-pyopenssl = "^24.0.0.20240417"
types-pycurl = "^7.45.3.20240421"
types-toml = "^0.10.8.20240310"
types-tqdm = "^4.66.0.20240417"
[[tool.poetry.source]]
name = "torch_cuda12"
url = "https://download.pytorch.org/whl/cu121"
priority = "explicit"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
main = "ttsclient.main:main"
generate_version_file = "scripts.version_manager:main"
generate_license_file = "scripts.license_manager:generate"