-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (30 loc) · 772 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (30 loc) · 772 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "veip-verifier-core"
version = "0.1.0"
description = "Canonical schema validation and deterministic replay verification for VEIP Evidence Packs."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE.md" }
authors = [
{ name = "Veraxis Execution Integrity Protocol Authors" }
]
dependencies = [
"jsonschema>=4.22.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
]
[project.scripts]
veip-verify = "veip_verifier_core.cli:main"
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.packages.find]
where = ["."]
include = ["veip_verifier_core*"]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]