-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (88 loc) · 2.44 KB
/
Copy pathpyproject.toml
File metadata and controls
103 lines (88 loc) · 2.44 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ovos-dinkum-listener"
dynamic = ["version"]
description = "ovos-core listener daemon client"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
]
dependencies = [
"ovos-plugin-manager>=2.10.0a1,<3.0.0",
"ovos-utils>=0.8.5,<1.0.0",
"ovos-config>=1.2.2,<4.0.0",
"ovos_bus_client>=2.5.1a1,<3.0.0",
"ovos-spec-tools>=0.16.1a2",
"requests>=2.26, <3.0",
"audioop-lts; python_version >= '3.13'", # removed from stdlib in py 3.13
]
[project.urls]
Homepage = "https://github.com/OpenVoiceOS/ovos-dinkum-listener"
Repository = "https://github.com/OpenVoiceOS/ovos-dinkum-listener"
[project.optional-dependencies]
extras = [
# STT plugins
"ovos-stt-plugin-server>=0.1.2,<1.0.0",
# VAD plugins
"ovos-vad-plugin-silero>=0.0.5,<1.0.0",
# Microphone plugins
"ovos-microphone-plugin-sounddevice>=0.0.2,<1.0.0",
# WakeWord plugins
"ovos-ww-plugin-vosk>=0.1.7,<1.0.0",
"ovos_ww_plugin_precise_onnx>=0.0.1,<1.0.0",
]
linux = [
# Microphone plugins
"ovos-microphone-plugin-alsa>=0.1.2,<1.0.0",
]
tests = [
"pytest~=8.4",
"ovos-vad-plugin-webrtcvad",
"pytest-cov>=3.0.0",
"coverage>=7.2.7",
# e2e bus-sequence harness for the wake-word verifier gate (MiniVoiceLoop)
"ovoscope>=0.19.0a1",
]
[project.scripts]
ovos-dinkum-listener = "ovos_dinkum_listener.__main__:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["ovos_dinkum_listener*"]
[tool.setuptools.package-data]
ovos_dinkum_listener = ["res/**/*"]
[tool.setuptools.dynamic]
version = {attr = "ovos_dinkum_listener.version.__version__"}
[tool.ruff]
exclude = ["_gh_automations"]
[tool.ruff.lint]
select = ["E", "F"]
[tool.mypy]
ignore_missing_imports = true
[tool.pytest.ini_options]
norecursedirs = ".git build __pycache__ docs"
filterwarnings = ["default"]
[tool.coverage.run]
branch = true
source = ["ovos_dinkum_listener"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
".* # pragma: no cover",
".* # nocover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if 0:",
"if trace is not None",
"verbose = .*",
"^ *raise",
"^ *pass *$",
"if _debug:",
"if __name__ == .__main__.:",
]