-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1.28 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "hivemind-core"
dynamic = ["version"]
description = "Mesh Networking utilities for OpenVoiceOS"
readme = "README.md"
license = "Apache-2.0"
authors = [
{name = "jarbasAI", email = "jarbasai@mailfence.com"}
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"click",
"click_default_group",
"rich",
"pycryptodomex",
"poorman-handshake>=1.0.1,<2.0.0",
"hivemind_bus_client>=0.7.0a2,<1.0.0",
"ovos_utils>=0.0.33,<1.0.0",
"pybase64",
"hivemind-plugin-manager>=0.5.0,<1.0.0",
"ovos-bus-client>=1.3.1,<2.0.0",
"json-database>=0.9.1,<1.0.0",
"hivemind-websocket-protocol>=0.0.3,<1.0.0",
"setuptools",
]
[project.urls]
Homepage = "https://github.com/JarbasHiveMind/HiveMind-core"
[project.scripts]
hivemind-core = "hivemind_core.scripts:hmcore_cmds"
[tool.setuptools]
packages = ["hivemind_core"]
[tool.setuptools.dynamic]
version = {attr = "hivemind_core.version.__version__"}