-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 1.14 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
[build-system]
requires = ["setuptools>=69.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "predicate-authority"
version = "0.4.8"
description = "Deterministic pre-execution authority layer for AI agents."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT OR Apache-2.0"
authors = [{ name = "Predicate Systems" }]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Typing :: Typed",
]
dependencies = [
"predicate-contracts>=0.1.0,<0.5.0",
"pyyaml>=6.0",
"cryptography>=42.0.0",
"httpx>=0.25.0",
]
[project.optional-dependencies]
telemetry = ["opentelemetry-api>=1.24.0"]
sidecar = ["predicate-authority-sidecar"]
[project.scripts]
predicate-download-sidecar = "predicate_authority.sidecar_binary:_cli_download"
[project.urls]
Documentation = "https://www.PredicateSystems.ai/docs"
[tool.setuptools]
packages = ["predicate_authority", "predicate_authority.integrations", "predicate_authority.verify"]
[tool.setuptools.package-dir]
"predicate_authority" = "."
"predicate_authority.integrations" = "integrations"
"predicate_authority.verify" = "verify"