hermes-agent/plugins/platforms/matrix/pyproject.toml
2026-05-26 10:29:50 -04:00

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*"]