-
Notifications
You must be signed in to change notification settings - Fork 284
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (62 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
69 lines (62 loc) · 1.64 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
[project]
name = "aidlc-evaluation-framework"
version = "0.1.0"
description = "Evaluation and reporting framework for AI-DLC workflows"
requires-python = ">=3.13"
dependencies = [
"pyyaml>=6.0",
"boto3>=1.43.2",
"aidlc-runner",
"aidlc-qualitative",
"aidlc-quantitative",
"aidlc-contracttest",
"aidlc-nonfunctional",
"aidlc-reporting",
"aidlc-shared",
"aidlc-trend-reports",
]
[tool.uv.workspace]
members = [
"packages/execution",
"packages/qualitative",
"packages/quantitative",
"packages/contracttest",
"packages/nonfunctional",
"packages/reporting",
"packages/shared",
"packages/ide-harness",
"packages/cli-harness",
"packages/trend-reports",
]
[tool.uv.sources]
aidlc-runner = { workspace = true }
aidlc-qualitative = { workspace = true }
aidlc-quantitative = { workspace = true }
aidlc-contracttest = { workspace = true }
aidlc-nonfunctional = { workspace = true }
aidlc-reporting = { workspace = true }
aidlc-shared = { workspace = true }
aidlc-trend-reports = { workspace = true }
[dependency-groups]
dev = [
"pytest>=9.0.3",
"pytest-asyncio>=0.23.0",
"ruff>=0.15.12",
"bandit>=1.9.4",
"semgrep>=1.161.0",
]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
ignore = []
[tool.ruff.lint.per-file-ignores]
"packages/trend-reports/src/trend_reports/render_html.py" = ["E501"]
"packages/trend-reports/src/trend_reports/render_md.py" = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
collect_ignore_glob = ["**/src/**"]