-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
63 lines (53 loc) · 1.62 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
[tool.poetry]
name = "asrclient"
version = "1.0.5"
description = ""
authors = ["wok <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10,<3.13"
fire = "0.6.0"
ngrok = "1.4.0"
pyopenssl = "24.2.1"
fastapi = "0.115.0"
numpy = "1.26.4"
uvicorn = "0.30.6"
portpicker = "1.6.0"
python-socketio = "5.11.4"
pythonnet = "3.0.4"
samplerate = "0.2.1"
faster-whisper = "1.0.3"
funasr = "1.1.6"
webrtcvad = "2.0.10"
python-multipart = "0.0.10"
torch-directml = "0.2.4.dev240815"
torchaudio = "2.3.1"
onnxruntime-directml = "1.19.2"
openai-whisper = {git = "https://github.com/openai/whisper.git"}
reazonspeech-nemo-asr = {path = "third_party/ReazonSpeech/pkg/nemo-asr"}
reazonspeech-k2-asr = {path = "third_party/ReazonSpeech/pkg/k2-asr"}
modelscope = "1.18.0"
sherpa-onnx = "1.10.27"
nemo-toolkit = {version = "2.0.0rc0", extras = ["asr"]}
[tool.poetry.group.dev.dependencies]
types-pyopenssl = "24.1.0.20240722"
types-requests = "^2.32.0.20240914"
pip-licenses = "^5.0.0"
toml = "^0.10.2"
[[tool.poetry.source]]
name = "torch_cuda12"
url = "https://download.pytorch.org/whl/cu121"
priority = "explicit"
[[tool.poetry.source]]
name = "ort_cuda12"
url = "https://aiinfra.pkgs.visualstudio.com/PublicPackages/_packaging/onnxruntime-cuda-12/pypi/simple/"
priority = "explicit"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
main = "asrclient.main:main"
webhook_server = "client.webhook_server.main:main"
python_socket_io = "client.python_socket_io.main:main"
generate_version_file = "scripts.version_manager:main"
generate_license_file = "scripts.license_manager:generate"