-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpyproject.toml
59 lines (50 loc) · 1.04 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[project]
name = "pyannote-metrics"
description = "A toolkit for reproducible evaluation, diagnostic, and error analysis of speaker diarization systems"
readme = "README.md"
authors = [
{ name = "Hervé BREDIN", email = "[email protected]" }
]
requires-python = ">=3.10"
dynamic = [
"version",
]
dependencies = [
"numpy>=2.2.2",
"pandas>=2.2.3",
"pyannote-core>=5.0.0",
"pyannote-database>=5.1.3",
"scikit-learn>=1.6.1",
"scipy>=1.15.1",
]
[project.scripts]
pyannote-metrics = "pyannote.metrics.cli:main"
[project.optional-dependencies]
test = [
"pytest>=8.3.4",
]
doc = [
"sphinx-rtd-theme>=3.0.2",
"sphinx>=8.1.3",
"ipython>=8.32.0",
"matplotlib>=3.10.0",
]
cli = [
"docopt>=0.6.2",
"sympy>=1.13.3",
"tabulate>=0.9.0",
]
plot = [
"matplotlib>=3.10.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",
]