forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (55 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
62 lines (55 loc) · 1.6 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "elizaos-terminal-bench"
version = "2.0.0"
description = "Terminal-Bench benchmark for ElizaOS - AI agent terminal proficiency evaluation"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "elizaOS Contributors" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"eliza-adapter",
"hermes-adapter",
"openclaw-adapter",
"pydantic>=2.0.0",
"httpx>=0.25.0",
"docker>=7.0.0",
"aiofiles>=23.0.0",
"pexpect>=4.8.0",
"PyYAML>=6.0.0",
]
[tool.uv.sources]
eliza-adapter = { path = "../eliza-adapter", editable = true }
hermes-adapter = { path = "../hermes-adapter", editable = true }
openclaw-adapter = { path = "../openclaw-adapter", editable = true }
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.0.0",
"pytest-mock>=3.12.0",
]
[project.scripts]
terminal-bench = "elizaos_terminal_bench.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["elizaos_terminal_bench*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"integration: marks tests as integration tests (deselect with '-m \"not integration\"')",
"docker: marks tests that require docker (deselect with '-m \"not docker\"')",
]