-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (76 loc) · 2.3 KB
/
pyproject.toml
File metadata and controls
82 lines (76 loc) · 2.3 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["hivemind"]
[project]
name = "hivemind-ai"
version = "2.1.6"
description = "Orchestrate distributed swarms of AI agents that collaboratively solve complex tasks."
readme = "README.md"
license = "GPL-3.0-or-later"
requires-python = ">=3.12"
keywords = ["ai", "agents", "swarm", "llm", "orchestration", "multi-agent", "distributed"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"keyring>=24.0",
"shtab>=1.6.0",
"pyfiglet>=1.0",
"httpx>=0.27.0",
"textual>=0.50.0",
"langchain>=1.2.10",
"langchain-anthropic>=1.3.4",
"langchain-google-genai>=4.2.1",
"langchain-openai>=1.1.10",
"networkx>=3.6.1",
"numpy>=2.4.2",
"pydantic>=2.12.5",
"python-dotenv>=1.2.2",
"rich>=14.3.3",
]
[project.urls]
Homepage = "https://github.com/rithulkamesh/hivemind"
Documentation = "https://hivemind.rithul.dev"
Changelog = "https://github.com/rithulkamesh/hivemind/blob/main/CHANGELOG.md"
Worker = "https://github.com/rithulkamesh/hivemind/pkgs/container/hivemind-worker"
[project.scripts]
hivemind = "hivemind.cli:main"
[project.optional-dependencies]
ollama = []
compliance = ["spacy>=3.7"]
explainability = []
data = ["pandas>=2.0.0", "scikit-learn>=1.3.0"]
document = ["docproc>=2.0.0", "python-docx>=1.0.0"]
research = ["duckduckgo-search>=6.0.0"]
embeddings = ["sentence-transformers>=3.0.0"]
mcp = ["httpx>=0.27", "anyio>=4.0"]
a2a = ["httpx>=0.27", "fastapi>=0.110", "uvicorn>=0.29", "sse-starlette>=2.0"]
hitl = ["httpx>=0.27"]
distributed = [
"redis>=5.0.0",
"fastapi>=0.110.0",
"uvicorn>=0.29.0",
"hiredis>=2.3.0",
]
worker = [] # distributed worker is a separate Rust binary (hivemind-worker)
docs = [
"mkdocs>=1.6.0,<2",
"mkdocs-material>=9.5.0",
"mike>=1.1.0",
]
[dependency-groups]
dev = [
"black>=26.3.0",
"mypy>=1.19.1",
"pytest>=9.0.2",
"respx>=0.22.0",
"ruff>=0.15.5",
]