-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 1.09 KB
/
Copy pathpyproject.toml
File metadata and controls
29 lines (25 loc) · 1.09 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
# Dependency manifest for hermes-plugin-kit (uv-native, GitOps source of truth).
# Unlike the path-loaded plugins, this IS an installable library: consuming
# plugins add it as a dependency (private git source) and import it. So it keeps
# a build-system and stays buildable; it is not `package = false`.
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "hermes-plugin-kit"
version = "0.7.0"
description = "Convention-correct middleware and lifecycle registration for hermes-agent plugins."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Offending Commit", email = "offendingcommit@gmail.com" }]
keywords = ["hermes", "hermes-agent", "plugin", "llm-tools"]
dependencies = []
[project.urls]
Repository = "https://github.com/offendingcommit/hermes-plugin-kit"
# Runtime stays dependency-free. The hermes contract tests import current
# upstream source, whose plugin and gateway seams transitively need these.
[dependency-groups]
dev = ["pyyaml", "requests==2.33.0"]
[tool.setuptools]
packages = ["hermes_plugin_kit"]