ReMe/plugins/beam/pyproject.toml
xyf2020 3f2eb6235f
feat(benchmark): extract BEAM and LongMemEval into standalone plugins (#512)
* 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
2026-09-03 14:06:39 +08:00

28 lines
617 B
TOML

[project]
name = "reme-beam"
version = "0.1.0"
description = "BEAM 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",
"json-repair",
"numpy>=2.2.6",
]
[project.entry-points."reme.plugins"]
beam = "reme_beam"
[tool.setuptools.packages.find]
where = ["src"]
include = ["reme_beam*", "judge_beam*"]
[tool.setuptools.package-data]
reme_beam = ["plugin.yaml", "*.yaml"]
judge_beam = ["*.yaml"]
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"