-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (58 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
65 lines (58 loc) · 1.22 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "audio-visualizer"
version = "0.6.0"
description = "Generate audio visualizations as video output."
readme = "readme.md"
requires-python = ">=3.13"
license = {file = "LICENSE"}
authors = [{name = "Timothy Eck"}]
dependencies = [
"av==15.0.0",
"librosa==0.11.0",
"numpy==2.2.*",
"Pillow==11.3.0",
"PySide6==6.10.2",
"PySide6_Addons==6.10.2",
"PySide6_Essentials==6.10.2",
"pyqtgraph==0.14.0",
"faster-whisper>=1.0.0",
"python-docx>=1.1.0",
"pysubs2>=1.6.0",
"PyYAML>=6.0",
"PyOpenGL>=3.1.0",
"sounddevice>=0.4.0",
]
[project.optional-dependencies]
diarize = [
"pyannote.audio>=3.0",
]
cuda = [
"nvidia-cublas-cu12>=12.4",
]
advanced = [
"torch>=2.0",
"transformers>=4.30",
"peft>=0.5",
"ctranslate2>=4.0",
]
dev = [
"pytest==8.3.2",
"pytest-mock",
"pytest-qt",
]
[project.scripts]
audio-visualizer = "audio_visualizer.visualizer:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
audio_visualizer = [
"srt/configs/*.json",
"caption/presets/examples/*.json",
]
[tool.pytest.ini_options]
testpaths = ["tests"]