-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (33 loc) · 993 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "whisper_asr_colab"
dynamic = ["version"]
dependencies = [
"faster-whisper@git+https://github.com/SYSTRAN/faster-whisper.git",
"python-docx>=1",
"yt-dlp",
"ffmpeg-python>=0.2",
"numpy>=1",
"pandas>=2",
"pyannote.audio>=3",
"torch==2.5.*",
"ctranslate2==4.4.0",
"numba>=0.54",
]
description = "Aggregation package for speech-to-text and diarization, featuring an example implementation on Google Colab."
readme = "README.md"
license = "MIT"
[tool.hatch.version]
source = "vcs"
path = "whisper_asr_colab/__init__.py"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build]
packages = ["whisper_asr_colab"]
exclude = ["whisper_asr_colab/templete_xmls/"]
[tool.hatch.build.hooks.custom]
path = "scripts/restore_docx.py"
[tool.hatch.build.targets.wheel.force-include]
"whisper_asr_colab/templates" = "whisper_asr_colab/templates"