mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-13 14:02:16 +00:00
23 lines
559 B
TOML
23 lines
559 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "hermes-agent-matrix"
|
|
version = "0.1.0"
|
|
description = "Matrix platform adapter for Hermes Agent"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"hermes-agent",
|
|
"mautrix[encryption]==0.21.0",
|
|
"Markdown==3.10.2",
|
|
"aiosqlite==0.22.1",
|
|
"asyncpg==0.31.0",
|
|
"aiohttp-socks==0.11.0",
|
|
]
|
|
|
|
[project.entry-points."hermes_agent.plugins"]
|
|
matrix = "hermes_agent_matrix:register"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["hermes_agent_matrix*"]
|