-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (57 loc) · 1.84 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (57 loc) · 1.84 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agentrust-trace-tests"
version = "0.4.0"
description = "TRACE conformance test suite"
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [
{ name = "agentrust-io.com" },
]
keywords = ["trace", "conformance", "attestation", "ai-agents", "provenance"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Testing",
"Topic :: Security",
]
requires-python = ">=3.11"
dependencies = [
"click>=8.1",
"cryptography>=42",
"jsonschema>=4.23",
]
[project.urls]
Homepage = "https://github.com/agentrust-io/trace-tests"
Repository = "https://github.com/agentrust-io/trace-tests"
Documentation = "https://github.com/agentrust-io/trace-tests#readme"
"Bug Tracker" = "https://github.com/agentrust-io/trace-tests/issues"
[project.scripts]
trace-tests = "trace_tests.cli:main"
[project.optional-dependencies]
dev = ["agentrust-trace-tests[test]", "ruff", "mypy", "bandit", "pip-audit"]
test = ["pytest>=8.0", "pytest-cov"]
[tool.hatch.build.targets.wheel]
packages = ["src/trace_tests"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"level0: Level 0 conformance -- structural and schema validity",
"level1: Level 1 conformance -- signed EAT envelope present",
"level2: Level 2 conformance -- hardware TEE attestation binding",
"negative: Negative tests -- invalid records must be rejected",
]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "SIM"]
[tool.mypy]
python_version = "3.11"
strict = true