-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
54 lines (47 loc) · 1.5 KB
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
[build-system]
requires = ["wheel", "hatchling"]
build-backend = "hatchling.build"
[project]
name = "gryannote"
version = "0.3.0"
description = "Provide Gradio custom components to make the diarization-based audio annotation process easier"
readme = "README.md"
authors = [{name = "Clément Pagés", email = "clement.pages@irit.fr"}]
license = { file = "LICENSE" }
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Visualization'
]
keywords = ["gradio-custom-component", "speaker-diarization", "pyannote", "annotation-tool", "audio"]
dependencies = [
"gradio==5.19.0",
"pyannote.audio>=3.1.1",
"pyannote.core>=5.0.0",
]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = ["build", "twine"]
[tool.hatch.build]
artifacts = ["*/templates", "*.pyi",]
[tool.hatch.build.targets.sdist]
exclude = [
"**/dist/",
".trunk/",
".github/",
]
[tool.hatch.build.targets.wheel]
packages = [
"/gryannote/audio/backend/gryannote_audio",
"/gryannote/pipeline/backend/gryannote_pipeline",
"/gryannote/rttm/backend/gryannote_rttm",
]
[project.urls]
Homepage = "https://github.com/clement-pages/gryannote"