-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (40 loc) · 1.42 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (40 loc) · 1.42 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "decision-contract-audit"
version = "0.2.0"
description = "Audit LLM decision points against six reliability contracts — an Inspect AI extension that replays frozen decision logs keylessly"
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE", "NOTICE"]
requires-python = ">=3.10"
# Upper cap: inspect-ai is pre-1.0 and its scorer/solver API still churns, so a
# minor bump can break installs. Relax when a tested newer floor is verified.
dependencies = ["inspect-ai>=0.3.248,<0.4"]
keywords = [
"inspect-ai",
"llm",
"llm-evaluation",
"reliability",
"contract-testing",
"metamorphic-testing",
"test-oracles",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Testing",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/CTWalk/decision-contract-audit"
Repository = "https://github.com/CTWalk/decision-contract-audit"
Issues = "https://github.com/CTWalk/decision-contract-audit/issues"
[tool.setuptools]
packages = ["decision_contracts"]