-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 875 Bytes
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 875 Bytes
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
[project]
name = "pyannote-core"
description = "Advanced data structures for handling temporal segments with attached labels"
readme = "README.md"
authors = [
{ name = "Hervé BREDIN", email = "herve@pyannote.ai" }
]
requires-python = ">=3.10"
dynamic = [
"version",
]
dependencies = [
"numpy>=2.0",
"pandas>=2.2.3",
"sortedcontainers>=2.4.0",
]
[project.optional-dependencies]
notebook = [
"ipython>=8.31.0",
"matplotlib>=3.10.0",
]
test = [
"matplotlib>=3.10.0",
"pytest>=8.3.4",
]
doc = [
"sphinx-rtd-theme>=3.0.2",
"sphinx>=8.1.3",
"matplotlib>=3.10.0",
"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",
]