-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (81 loc) · 2.93 KB
/
Copy pathpyproject.toml
File metadata and controls
89 lines (81 loc) · 2.93 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "sonata-asr"
version = "0.1.1"
description = "SONATA: SOund and Narrative Advanced Transcription Assistant"
authors = ["hwk06023 <hwk06023@github.com>"]
readme = "README.md"
license = "GPL-3.0-or-later"
repository = "https://github.com/hwk06023/SONATA"
keywords = ["sonata", "sonata-asr", "audio", "transcription", "speech", "emotion", "ASR", "whisper", "audio-detection", "sound-events", "speaker-diarization", "audio-analysis", "non-verbal-cues", "emotive-sounds", "multilingual", "speech-recognition", "speech-to-text", "audio-classification", "audio-events", "audio-processing", "voice-analysis", "language-detection", "whisperx", "automatic-speech-recognition", "voice-transcription", "speaker-recognition", "multimodal", "audio-segmentation", "audio-preprocessing", "word-timestamps", "emotion-detection", "noise-detection", "multi-speaker", "subtitle-generation", "annotated-transcripts", "human-expression", "context-aware", "real-time-transcription", "offline-diarization", "audio-event-detection", "multi-language", "multilingual"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
]
include = [
"LICENSE",
"README.md"
]
packages = [
{ include = "sonata" },
{ include = "sonata/core" },
{ include = "sonata/libs" },
{ include = "sonata/models" },
{ include = "sonata/utils" }
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
numpy = ">=1.20.0"
torch = ">=1.10.0"
torchaudio = ">=2.0.0"
transformers = ">=4.30.0"
whisperx = ">=3.1.0"
librosa = ">=0.10.0"
pydub = ">=0.25.1"
scipy = ">=1.7.0"
soundfile = ">=0.10.3"
tqdm = ">=4.62.0"
matplotlib = ">=3.5.0"
scikit-learn = ">=1.0.0"
huggingface_hub = ">=0.12.0"
webrtcvad-wheels = ">=2.0.11"
speechbrain = ">=0.5.14"
"pyannote.audio" = ">=2.1.1"
"pyannote.core" = ">=4.5"
"pyannote.metrics" = ">=3.2"
"pyannote.pipeline" = ">=2.3"
networkx = ">=2.6.3"
hf_xet = ">=0.1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
black = "^23.3.0"
isort = "^5.12.0"
flake8 = "^6.0.0"
mypy = "^1.3.0"
coverage = "^7.2.7"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.0.1"
sphinx-rtd-theme = "^1.2.2"
myst-parser = "^2.0.0"
[tool.poetry.scripts]
sonata-asr = "sonata.main:main"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/hwk06023/SONATA/issues"
"Documentation" = "https://github.com/hwk06023/SONATA"
[tool.black]
line-length = 88
target-version = ["py38"]
[tool.isort]
profile = "black"
line_length = 88