-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (23 loc) · 1.01 KB
/
setup.py
File metadata and controls
35 lines (23 loc) · 1.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
"""Setup brv-bench CLI application."""
__author__ = ["Danh Doan"]
__email__ = ["danhdoancv@gmail.com"]
__date__ = "2025/05/21"
__status__ = "development"
# =============================================================================
from setuptools import find_packages, setup
# =============================================================================
def parse_requirements(filename: str) -> list[str]:
"""Parse packages from `requirements.txt` file."""
with open(filename) as f:
return [line.strip() for line in f if line.strip() and not line.startswith("#")]
setup(
name="brv_bench",
version="0.1.0",
description="Benchmark suite for evaluating retrieval quality, latency, and diversity of AI agent context systems",
author="Danh Doan",
author_email="danhdoancv@gmail.com",
packages=find_packages(),
install_requires=parse_requirements("requirements.txt"),
python_requires=">=3.12",
)
# =============================================================================