-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.58 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (48 loc) · 1.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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "HiveMind-cli"
description = "Terminal client for HiveMind — send utterances and inspect the bus from the command line"
readme = "README.md"
authors = [{ name = "jarbasAI", email = "jarbasai@mailfence.com" }]
license = { text = "Apache-2.0" }
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = [
# HiveMind bus 2.x stack — prerelease floor pins (resolved with no --pre)
"hivemind-bus-client>=0.9.2a1",
"hivemind-presence>=0.0.2a2",
"ovos-bus-client>=2.0.0a3",
"ovos-spec-tools>=0.8.0a1",
]
[project.optional-dependencies]
# End-to-end test stack: hivescope boots a real hivemind-core master in-process
# (loopback WebSocket) and drives the real CLI client over a real bus client.
# Prerelease floor pins keep the whole graph on the bus-client 2.x stack with no
# --pre flag required.
e2e = [
"pytest",
"hivescope>=0.5.2a1",
"hivemind-core>=4.6.2a1",
"hivemind-plugin-manager>=0.6.0a1",
"hivemind-ovos-agent-plugin>=0.3.0a1",
]
# License-compliance test deps (license_tests.py).
license = [
"pytest",
"lichecker",
]
# Back-compat alias: `pip install -e .[test]` == the e2e stack.
test = [
"HiveMind-cli[e2e]",
]
[project.urls]
Homepage = "https://github.com/JarbasHiveMind/HiveMind-cli"
[project.scripts]
hivemind-cli = "hivemind_cli_terminal.__main__:main"
[tool.setuptools]
packages = ["hivemind_cli_terminal"]
include-package-data = true
[tool.setuptools.dynamic]
version = { attr = "hivemind_cli_terminal.version.__version__" }