| 123456789101112131415161718192021222324252627282930 |
- [build-system]
- requires = ["setuptools>=68.0"]
- build-backend = "setuptools.build_meta"
- [project]
- name = "hermes-chatto-plugin"
- version = "1.0.0"
- description = "Chatto platform adapter for Hermes Agent (includes vendored chattolib)"
- requires-python = ">=3.11"
- license = {text = "MIT"}
- authors = [
- {name = "liv", email = "paul@klumpp.de"},
- ]
- dependencies = [
- ]
- #[project.entry-points."hermes_agent.plugins"]
- #hermes-chatto-plugin = "hermes-chatto-plugin"
- [dependency-groups]
- dev = [
- "pytest>=9.0",
- "pytest-asyncio>=0.24",
- "chattolib[realtime]>=0.4.19",
- "connectrpc>=0.11.1",
- ]
- [tool.setuptools.packages.find]
- where = ["."]
|