-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 937 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 937 Bytes
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.backends._legacy:_Backend"
[project]
name = "agenteval"
version = "0.1.0"
description = "Behavior test framework for AI agents. Define tests in YAML, run against transcripts, get scored reports."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{name = "robobobby"}
]
keywords = ["ai", "agents", "testing", "evaluation", "quality"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Testing",
]
dependencies = [
"pyyaml>=6.0",
]
[project.scripts]
agenteval = "agenteval:main"
[project.urls]
Homepage = "https://github.com/robobobby/agenteval"
Documentation = "https://robobobby.github.io/agenteval"
[tool.setuptools]
py-modules = ["agenteval"]