-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 2.02 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (49 loc) · 2.02 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "opik-hermes"
version = "0.1.1"
description = "Opik observability plugin for the Hermes agent — traces conversations, LLM calls, and tool usage to Opik."
readme = "README.md"
requires-python = ">=3.11,<3.14"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [{ name = "Comet" }]
keywords = ["opik", "hermes", "observability", "tracing", "llm", "agent", "comet"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"opik>=2.0.0",
]
[project.urls]
Homepage = "https://github.com/comet-ml/opik-hermes"
Repository = "https://github.com/comet-ml/opik-hermes"
Issues = "https://github.com/comet-ml/opik-hermes/issues"
Documentation = "https://www.comet.com/docs/opik/"
# Hermes discovers pip-installed plugins via this entry-point group. The
# value points at the package's register(ctx) entry module.
[project.entry-points."hermes_agent.plugins"]
# Points at the MODULE (not opik_hermes:register). Hermes loads the entry point
# with ep.load() then does getattr(<result>, "register") expecting a module with
# a register() attribute. A ":register" suffix would load the function itself,
# so getattr(function, "register") is None -> "no register() function" and no
# hooks are wired. See the opik_hermes package __init__ which exports register.
opik = "opik_hermes"
[project.optional-dependencies]
dev = ["pytest>=8", "pytest-asyncio>=0.23"]
[tool.setuptools]
packages = ["opik_hermes", "opik_hermes.sanitize"]
[tool.setuptools.package-dir]
opik_hermes = "observability/opik"
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_default_fixture_loop_scope = "function"