-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 1.38 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 = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ovos-audio"
dynamic = ["version"]
description = "ovos-core audio daemon client"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.9"
dependencies = [
"ovos-utils>=0.8.0,<1.0.0",
"ovos_bus_client>=1.3.0,<2.0.0",
"ovos-config>=0.0.12,<3.0.0",
"ovos-plugin-manager>=2.0.0,<3.0.0",
]
[project.urls]
Homepage = "https://github.com/OpenVoiceOS/ovos-audio"
Repository = "https://github.com/OpenVoiceOS/ovos-audio"
[project.optional-dependencies]
test = [
"ovoscope>0.10.0",
"pytest>=5.2.4",
"pytest-cov>=2.8.1",
"cov-core>=1.15.0",
"ovos_audio_plugin_simple>=0.1.0, <1.0.0",
]
extras = [
"ovos-dialog-normalizer-plugin>=0.0.1, <1.0.0",
"ovos-tts-plugin-server>=0.0.2, <1.0.0",
"ovos-tts-plugin-piper>=0.2.4, <1.0.0",
"phoonnx>=0.5.4, <1.0.0",
"ovos_audio_plugin_simple>=0.1.0, <1.0.0",
"ovos-audio-plugin-mpv>=0.2.0, <1.0.0",
"ovos-media-plugin-spotify>=0.2.3, <1.0.0",
"ovos-media-plugin-chromecast>=0.1.0, <1.0.0",
"ovos_plugin_common_play[extractors]>=1.1.4, <2.0.0",
]
[project.scripts]
ovos-audio = "ovos_audio.__main__:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["ovos_audio*"]
[tool.setuptools.dynamic]
version = {attr = "ovos_audio.version.__version__"}