forked from pyannote/pyannote-database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (47 loc) · 1.13 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
[project]
name = "pyannote-database"
description = "Interface to multimedia databases and experimental protocols"
readme = "README.md"
authors = [
{ name = "Hervé BREDIN", email = "[email protected]" }
]
requires-python = ">=3.10"
dynamic = [
"version",
]
dependencies = [
"pandas>=2.2.3",
"pyannote-core>=5.0.0",
"pyyaml>=6.0.2",
]
[project.scripts]
pyannote-database = "pyannote.database.cli:main"
[project.entry-points.'pyannote.database.loader']
".rttm" = "pyannote.database.loader:RTTMLoader"
".uem" = "pyannote.database.loader:UEMLoader"
".ctm" = "pyannote.database.loader:CTMLoader"
".map" = "pyannote.database.loader:MAPLoader"
".lab" = "pyannote.database.loader:LABLoader"
".stm" = "pyannote.database.loader:STMLoader"
[project.optional-dependencies]
cli = [
"typer>=0.15.1",
]
test = [
"pytest>=8.3.4",
]
doc = [
"sphinx-rtd-theme>=3.0.2",
"sphinx>=8.1.3",
]
[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",
]