-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.67 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (58 loc) · 1.67 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ovos-bus-client"
dynamic = ["version"]
description = "OVOS Messagebus Client"
license = { text = "Apache-2.0" }
readme = "README.md"
authors = [
{ name = "JarbasAI", email = "jarbasai@mailfence.com" },
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
]
dependencies = [
"ovos-config>=0.0.12,<3.0.0",
"ovos-utils>=0.8.2,<1.0.0",
"ovos-spec-tools[langcodes]>=1.7.0a1", # narrowed is_intent_topic + intent-pair mirror guard
"websocket-client>=0.54.0",
"pyee>=8.1.0,<13.0.0",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"langcodes",
"language_data",
]
[project.urls]
Homepage = "https://github.com/OpenVoiceOS/ovos-bus-client"
Issues = "https://github.com/OpenVoiceOS/ovos-bus-client/issues"
[project.scripts]
ovos-listen = "ovos_bus_client.scripts:ovos_listen"
ovos-speak = "ovos_bus_client.scripts:ovos_speak"
ovos-say-to = "ovos_bus_client.scripts:ovos_say_to"
ovos-simple-cli = "ovos_bus_client.scripts:simple_cli"
[tool.coverage.run]
source = ["ovos_bus_client"]
branch = false
omit = ["ovos_bus_client/version.py"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"@abstractmethod",
"\\.\\.\\.",
]
[tool.setuptools.dynamic]
version = { attr = "ovos_bus_client.version.__version__" }
[tool.setuptools.packages.find]
where = ["."]
include = ["ovos_bus_client*"]