-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 1.09 KB
/
Copy pathpyproject.toml
File metadata and controls
36 lines (31 loc) · 1.09 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "kma-bench"
version = "0.1.0"
description = "Knowledge Management Agent Benchmark — the first benchmark for knowledge management tasks in AI agent systems"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Daniel Phiri", email = "malgamves@gmail.com"},
]
keywords = ["benchmark", "knowledge-management", "llm", "agents", "evaluation"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.scripts]
kma-bench = "kma_bench.runner:main"
[project.urls]
Homepage = "https://github.com/malgamves/kma-bench"
Documentation = "https://github.com/malgamves/kma-bench#readme"
Issues = "https://github.com/malgamves/kma-bench/issues"
[tool.setuptools.packages.find]
include = ["kma_bench*"]
[tool.setuptools.package-data]
"kma_bench.test_cases" = ["*.json"]