-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (24 loc) · 875 Bytes
/
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
[project]
name = "whisper-annotation-tools"
version = "0.0.1"
description = "Transform whisper ASR and pyannote.speaker-diarization into transcript formats ready for further linguistic analysis."
keywords = ["whiper", "pyannote", "linguistics"]
readme = "README.md"
authors = [
{ name = "Vasco Alexander Sahlbach", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.9"
dependencies = []
[project.urls]
"Homepage" = "https://github.com/notaTeapot/whisper-annotation-tools"
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project.scripts]
whisper-annotation-tools = "whisper_annotation_tools.cli:main"