-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (50 loc) · 1.8 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (50 loc) · 1.8 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
# Dependency manifest for hermes-plugin-kit (uv-native, GitOps source of truth).
# Unlike path-loaded plugins, this is a public installable library: consuming
# plugins declare a compatible PyPI range and import it. 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.8.0"
description = "Convention-correct middleware and lifecycle registration for hermes-agent plugins."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [{ name = "Offending Commit", email = "offendingcommit@gmail.com" }]
keywords = ["hermes", "hermes-agent", "plugin", "llm-tools"]
dependencies = ["pyyaml>=6"]
[project.urls]
Repository = "https://github.com/offendingcommit/hermes-plugin-kit"
# The runtime uses PyYAML for strict SKILL.md validation. Contract tests import
# current upstream Hermes source, whose plugin and gateway seams need these.
[dependency-groups]
dev = [
"httpx[socks]==0.28.1",
"python-semantic-release==10.6.1",
"requests==2.33.0",
"twine==6.2.0",
]
[tool.setuptools]
packages = ["hermes_plugin_kit"]
[tool.semantic_release]
allow_zero_version = true
assets = ["uv.lock"]
build_command = "uv lock --upgrade-package \"$PACKAGE_NAME\" && git add uv.lock"
commit_message = "chore(release): v{version}"
commit_parser = "conventional"
major_on_zero = true
tag_format = "v{version}"
version_toml = ["pyproject.toml:project.version"]
[tool.semantic_release.branches.main]
match = "main"
prerelease = false
[tool.semantic_release.commit_parser_options]
ignore_merge_commits = true
parse_squash_commits = true
[tool.semantic_release.remote]
type = "github"
token = { env = "GH_TOKEN" }
[tool.semantic_release.publish]
upload_to_vcs_release = false