-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
41 lines (35 loc) · 974 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "WhisperLive"
version = "1.1.0"
description = "its is modifucation of whisper-live and denoise which can be use in production env"
license = {text = "MIT License"}
readme = {file = "readme.md", content-type = "text/markdown"}
authors = [
{name = "R Ansh Joseph", email = "[email protected]"}
]
maintainers = [
{name = "R Ansh Joseph", email = "[email protected]"}
]
requires-python = ">= 3.10"
dependencies = [
"ctranslate2==4.1.0",
"ffmpeg_python==0.2.0",
"kaldialign==0.9.1",
"numpy==1.26.4",
"onnxruntime==1.17.3",
"openai_whisper==20231117",
"PyAudio==0.2.14",
"scipy==1.13.0",
"soundfile==0.12.1",
"tokenizers==0.15",
"torch==2.1.2",
"torchaudio==2.1.2",
"websocket_client==1.7.0",
"websockets==12.0",
"faster-whisper==1.0.1"
]
[tool.setuptools.packages.find]
include = ["WhisperLive"]