mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-09 22:31:05 +00:00
* Simplify project implementation * Centralize benchmark agentic answer base class * Remove bundled ReMe source snapshots * Preserve local benchmark configs and plugin discovery behavior * docs: enrich job parameter descriptions in beam and lme plugin configs * Simplify project structure and remove obsolete code * Move benchmark search step configuration into BEAM and LME plugins * Rename benchmark judge packages to avoid import collisions * Remove explicit plugin package loading in favor of entry-point discovery * Export benchmark plugin Steps from public packages
26 lines
578 B
TOML
26 lines
578 B
TOML
[project]
|
|
name = "reme-lme"
|
|
version = "0.1.0"
|
|
description = "LongMemEval benchmark plugin for ReMe."
|
|
readme = "README.md"
|
|
license = "Apache-2.0"
|
|
license-files = ["LICENSE"]
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"reme-ai[as]>=0.4.1.11",
|
|
]
|
|
|
|
[project.entry-points."reme.plugins"]
|
|
lme = "reme_lme"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
include = ["reme_lme*", "judge_lme*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
reme_lme = ["plugin.yaml", "*.yaml"]
|
|
judge_lme = ["*.yaml"]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=77", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|