-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.84 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (50 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
[build-system]
requires = ["setuptools>=77.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "aegisagent"
version = "0.1.0"
description = "AegisAgent Python SDK — fail-closed approval integrity and trust-provenance for AI agent actions"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [{ name = "Lavkush Kumar" }]
keywords = ["ai-agents", "security", "authorization", "approval-integrity", "mcp", "cedar"]
dependencies = [
"requests>=2.25.0",
"opentelemetry-api>=1.15.0",
]
[project.optional-dependencies]
# Optional async backend: AegisAsyncClient is httpx-based. Runtime-optional
# (the sync client needs no new dep) — install with `pip install aegisagent[async]`.
async = [
"httpx>=0.24",
]
# black 26.x requires Python >=3.10; pin a 3.9-compatible release there so the
# 3.9 CI leg can install the [dev] extra. The `black --check` only runs on 3.12,
# which keeps 26.5.1 — so formatting enforcement is unchanged.
# httpx is included so the async-client test suite runs in CI (the async tests
# construct AegisAsyncClient, which requires httpx).
dev = [
"black==26.5.1; python_version >= '3.10'",
"black==25.11.0; python_version < '3.10'",
"httpx>=0.24",
"coverage>=7.0",
]
[project.urls]
Homepage = "https://github.com/lavkushry/AegisAgent"
Repository = "https://github.com/lavkushry/AegisAgent"
Issues = "https://github.com/lavkushry/AegisAgent/issues"
[project.scripts]
aegis = "aegisagent.cli:main"
aegis-verify-receipts = "aegisagent.verify_receipts:main"
aegis-status = "aegisagent.cli:status_main"
aegis-freeze-agent = "aegisagent.cli:freeze_agent_main"
aegis-export-audit = "aegisagent.cli:export_audit_main"
aegis-soc-summary = "aegisagent.cli:soc_summary_main"
[tool.setuptools.packages.find]
where = ["."]
include = ["aegisagent*"]
[tool.black]
line-length = 88
target-version = ["py38"]