-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
107 lines (97 loc) · 2.58 KB
/
pyproject.toml
File metadata and controls
107 lines (97 loc) · 2.58 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "voicetag"
version = "0.2.0"
description = "Speaker identification powered by pyannote and resemblyzer"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "voicetag contributors"},
]
keywords = ["speaker", "diarization", "identification", "pyannote", "resemblyzer", "audio"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
dependencies = [
"numpy>=1.24",
"pydantic>=2.0",
"soundfile>=0.12",
"loguru>=0.7",
"typer>=0.9",
"rich>=13.0",
]
[project.urls]
Homepage = "https://github.com/Gr122lyBr/voicetag"
Documentation = "https://Gr122lyBr.github.io/voicetag/"
Repository = "https://github.com/Gr122lyBr/voicetag"
Issues = "https://github.com/Gr122lyBr/voicetag/issues"
Changelog = "https://github.com/Gr122lyBr/voicetag/blob/main/CHANGELOG.md"
[project.optional-dependencies]
ml = [
"resemblyzer>=0.1.3",
"pyannote.audio>=3.1",
"torch>=2.0",
]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"black>=24.0",
"ruff>=0.3",
"mypy>=1.9",
"pre-commit>=3.0",
"build>=1.0",
]
openai = ["openai>=1.0"]
groq = ["groq>=0.4"]
fireworks = ["httpx>=0.27"]
whisper = ["openai-whisper>=20230918"]
deepgram = ["deepgram-sdk>=3.0"]
all-stt = [
"openai>=1.0",
"groq>=0.4",
"httpx>=0.27",
"openai-whisper>=20230918",
"deepgram-sdk>=3.0",
]
docs = [
"mkdocs>=1.5",
"mkdocs-material>=9.0",
]
[project.scripts]
voicetag = "voicetag.cli:main"
[tool.setuptools.packages.find]
include = ["voicetag*"]
[tool.black]
line-length = 99
target-version = ["py310"]
[tool.ruff]
line-length = 99
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.mypy]
python_version = "3.10"
plugins = ["pydantic.mypy"]
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v"