-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (74 loc) · 2.01 KB
/
pyproject.toml
File metadata and controls
86 lines (74 loc) · 2.01 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentevalkit"
version = "0.6.0"
description = "Testing and evaluation framework for AI agents"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
authors = [
{name = "Amit Paz"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Testing",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"pyyaml>=6.0",
"click>=8.0",
"httpx>=0.24",
"jsonschema>=4.0",
]
[project.optional-dependencies]
stats = ["scipy>=1.9"]
semantic = ["sentence-transformers>=2.0"]
crewai = ["crewai>=0.28"]
autogen = ["pyautogen>=0.2"]
distributed = [
"redis>=4.0",
]
dashboard = [] # Currently uses stdlib only
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"ruff>=0.1",
"build",
"fakeredis>=2.0",
]
[project.urls]
Homepage = "https://github.com/agentkitai/agenteval"
Repository = "https://github.com/agentkitai/agenteval"
[project.scripts]
agenteval = "agenteval.cli:cli"
[tool.setuptools.package-data]
agenteval = ["dashboard/static/**"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "SIM"]
ignore = ["E501", "B007", "B904", "SIM108", "SIM105", "SIM103", "UP006", "UP035", "UP045", "B028"]
[tool.mypy]
python_version = "3.9"
warn_return_any = true
check_untyped_defs = true
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "agenteval.distributed.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "agenteval.dashboard.*"
ignore_errors = true