-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (43 loc) · 1.28 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
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[project]
name = "powerset_calibration"
authors = [
{name = "Alexis Plaquet", email = "[email protected]"},
]
description = "Companion package to the 'On the calibration of powerset speaker diarization models' paper published at Interspeech 2024."
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
requires-python = ">=3.8.1"
dynamic = ["version"]
dependencies = [
"pyannote-audio >= 3.1",
"pandas",
"tqdm",
"pyarrow",
]
license = {text = "MIT License"}
[project.urls]
Documentation = "https://frenchkrab.github.io/powerset_calibration"
Source = "https://github.com/FrenchKrab/powerset_calibration"
Tracker = "https://github.com/FrenchKrab/powerset_calibration/issues"
[tool.flit.module]
name = "powerset_calibration"
[tool.bandit]
exclude_dirs = ["build","dist","tests","scripts"]
number = 4
recursive = true
targets = "src"
[tool.black]
line-length = 100
fast = true