-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (71 loc) · 2.81 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (71 loc) · 2.81 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
70
71
72
73
74
75
76
77
[build-system]
requires = ["setuptools==84.0.0", "wheel==0.48.0"]
build-backend = "setuptools.build_meta"
[project]
name = "verifier-standard"
version = "1.2.0"
description = "Verification-domain language and reference implementation for bounded computational claims."
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
license-files = ["LICENSE", "NOTICE"]
authors = [{name = "TimeLordRaps"}]
keywords = [
"verification",
"evidence",
"provenance",
"refutability",
"reproducibility",
"software-supply-chain",
"artificial-intelligence",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/TimeLordRaps/verifier"
Documentation = "https://timelordraps.github.io/verifier/"
"API Policy" = "https://github.com/TimeLordRaps/verifier/blob/main/docs/API_STABILITY.md"
Issues = "https://github.com/TimeLordRaps/verifier/issues"
Specification = "https://github.com/TimeLordRaps/verifier/tree/main/standard"
Changelog = "https://github.com/TimeLordRaps/verifier/blob/main/CHANGELOG.md"
Security = "https://github.com/TimeLordRaps/verifier/security/policy"
[project.optional-dependencies]
yaml = ["pyyaml>=6.0"]
llguidance = ["llguidance==1.8.0"]
torch = ["torch>=2.2"]
jsonschema = ["jsonschema>=4.18"]
seal = ["cryptography==50.0.0"]
scitt = [
"scitt-cose==0.2.2",
"cbor2==6.1.4",
"cryptography==50.0.0",
]
test = ["pytest>=8.0", "coverage==7.15.4", "pyyaml>=6.0", "jsonschema>=4.18"]
release = ["build==1.5.0", "twine==7.0.0"]
[project.scripts]
# `vstd` is the canonical cross-platform CLI. On Windows, `verifier.exe` is the
# operating system's Driver Verifier utility, so that alias can be shadowed.
vstd = "verifier.runtime.public_cli:main"
# Retain the project-name alias for compatibility on platforms where it is unambiguous.
verifier = "verifier.runtime.public_cli:main"
# `verifiable` is retained as a deprecated alias and MUST NOT be removed: receipts
# published in the v0.1.0 and v0.2.0 release artifacts, which predate the rename, bind
# falsification conditions that invoke it by name. Removing it would render those
# already-published refutation instructions unrunnable. No file in the current tree
# binds it. The alias is a command name only; it no longer corresponds to any import
# package.
verifiable = "verifier.runtime.public_cli:main"
[tool.setuptools.package-data]
verifier = ["artifact_control/*.json", "hardware/*.json", "specifications/*.md"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
norecursedirs = ["artifacts_tmp", "build", "dist", ".git", ".venv"]
asyncio_default_fixture_loop_scope = "function"