-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (55 loc) · 1.61 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (55 loc) · 1.61 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
60
61
62
63
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hermes-plugin-clawrouter"
version = "0.3.7"
description = "ClawRouter for Hermes — 55+ models, x402 USDC micropayments, smart routing"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "BlockRun" }
]
requires-python = ">=3.9"
keywords = ["hermes", "hermes-agent", "clawrouter", "x402", "llm-router", "blockrun"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"httpx>=0.27",
"bip_utils>=2.9",
"PyYAML>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7",
"pytest-asyncio>=0.23",
"respx>=0.21",
]
[project.entry-points."hermes_agent.plugins"]
clawrouter = "clawrouter_hermes"
[project.scripts]
hermes-clawrouter = "clawrouter_hermes.cli:main"
[project.urls]
Homepage = "https://github.com/BlockRunAI/ClawRouter"
Repository = "https://github.com/BlockRunAI/ClawRouter-Hermes"
"Bug Tracker" = "https://github.com/BlockRunAI/ClawRouter-Hermes/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
clawrouter_hermes = [
"plugin.yaml",
"provider_template/*.yaml",
"provider_template/*.tmpl",
"skills/clawrouter/*.md",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"