-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1021 Bytes
/
Copy pathpyproject.toml
File metadata and controls
54 lines (47 loc) · 1021 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[project]
name = "llm-eval-notes"
version = "0.1.0"
description = "LLM evaluation artifacts: hallucination, brittleness, structured output tests"
readme = "README.md"
authors = [
{ name = "Max P", email = "max.petrusenko@gmail.com" }
]
requires-python = ">=3.11"
dependencies = [
"openai>=1.0",
"anthropic>=0.40",
"pydantic>=2.0",
"typer>=0.12",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.8",
"mypy>=1.0",
"pytest>=8.0",
"pytest-asyncio>=0.24",
]
[project.scripts]
llm-eval = "llm_eval.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"ruff>=0.8",
"mypy>=1.0",
"types-pyyaml>=6.0.12.20250915",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true
warn_unused_ignores = true