-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (47 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
55 lines (47 loc) · 1.37 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
[project]
name = "pyannote-audio"
description = "State-of-the-art speaker diarization toolkit"
readme = "README.md"
authors = [{ name = "Hervé BREDIN", email = "herve@pyannote.ai" }]
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = [
"asteroid-filterbanks>=0.4.0",
"einops>=0.8.1",
"huggingface-hub>=0.28.1",
"lightning>=2.4",
"opentelemetry-api>=1.34.0",
"opentelemetry-sdk>=1.34.0",
"opentelemetry-exporter-otlp>=1.34.0",
"pyannote-core>=6.0.1",
"pyannote-database>=6.1.1",
"pyannote-metrics>=4.0.0",
"pyannote-pipeline>=4.0.0",
"pytorch-metric-learning>=2.8.1",
"rich>=13.9.4",
"safetensors>=0.5.2",
"torch-audiomentations>=0.12.0",
"torch>=2.8.0",
"torchaudio>=2.8.0",
"torchcodec>=0.7.0",
"torchmetrics>=1.6.1",
"matplotlib>=3.10.0",
"pyannoteai-sdk>=0.3.0",
]
[project.scripts]
pyannote-audio = "pyannote.audio.__main__:app"
[project.optional-dependencies]
test = ["papermill>=2.6.0", "pytest>=8.3.4"]
doc = ["sphinx-rtd-theme>=3.0.2", "sphinx>=8.1.3"]
cli = ["typer>=0.15.1"]
separation = ["asteroid>=0.5.2", "transformers>=4.48.3"]
dev = ["ipython>=8.32.0"]
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
packages = ["src/pyannote"]
[dependency-groups]
dev = ["ipykernel>=6.29.5"]