-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.15 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
[project]
name = "video-transcription-analysis"
version = "0.1.0"
description = "Local video transcription and analysis using Ollama"
readme = "README.md"
requires-python = ">=3.10,<3.13"
dependencies = [
"opencv-python>=4.8.0",
"pillow>=10.0.0",
"requests>=2.31.0",
"tqdm>=4.66.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"mlx-whisper>=0.4.3",
"torch>=2.0.0,<2.9",
"torchaudio>=2.0.0,<2.9",
"ffmpeg-python>=0.2.0",
"pyannote.audio>=4.0.0,<5.0",
"speechbrain>=1.0.0,<2.0",
"scipy>=1.10.0",
"pyyaml>=6.0",
"spacy>=3.7.0",
"ocrmac>=0.1.3; sys_platform == 'darwin'",
"typer>=0.20.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-mock>=3.12.0",
"ruff>=0.1.0",
"mypy>=1.5.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/video_transcription"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true