iris-security-sdk 0.2.11__tar.gz → 0.2.14__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,10 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: iris-security-sdk
3
- Version: 0.2.11
3
+ Version: 0.2.14
4
4
  Summary: IRIS — AI Agent Governance SDK. Govern AI agents locally.
5
+ Author-email: Gilbert Martin <gilbert@iris-security.io>
5
6
  License: Apache-2.0
6
- Project-URL: Homepage, https://gimartinb.github.io/iris-sdk/
7
- Project-URL: Repository, https://github.com/gimartinb/iris-sdk
7
+ Project-URL: Homepage, https://iris-security.github.io/iris-sdk/
8
+ Project-URL: Repository, https://github.com/IRIS-Security/iris-sdk
8
9
  Keywords: ai-governance,policy-as-code,cedar,compliance,llm,ai-agents,langchain,anthropic,openai,colorado-ai-act,eu-ai-act,hipaa,fedramp,mcp,claude,iris,guardrails,responsible-ai
9
10
  Classifier: Development Status :: 3 - Alpha
10
11
  Classifier: Intended Audience :: Developers
@@ -61,7 +62,7 @@ IRIS — AI Agent Governance SDK. Govern AI agents locally.
61
62
  Discover, register, and govern AI agents with Cedar policy evaluation,
62
63
  compliance bundles, and local-first governance.
63
64
 
64
- Part of the [IRIS SDK](https://github.com/gimartinb/iris-sdk).
65
+ Part of the [IRIS SDK](https://github.com/IRIS-Security/iris-sdk).
65
66
 
66
67
  ## Install
67
68
 
@@ -5,7 +5,7 @@ IRIS — AI Agent Governance SDK. Govern AI agents locally.
5
5
  Discover, register, and govern AI agents with Cedar policy evaluation,
6
6
  compliance bundles, and local-first governance.
7
7
 
8
- Part of the [IRIS SDK](https://github.com/gimartinb/iris-sdk).
8
+ Part of the [IRIS SDK](https://github.com/IRIS-Security/iris-sdk).
9
9
 
10
10
  ## Install
11
11
 
@@ -47,7 +47,11 @@ from iris_core.evidence.vault import EvidenceVault
47
47
  from iris_core.cost.tracker import CostSummary, CostTracker, CostEntry
48
48
  from iris_core.cost.pricing import PricingRegistry
49
49
 
50
- __version__ = "0.2.11"
50
+ __version__ = "0.2.14"
51
+
52
+ AARM_CONFORMANCE = "Core" # R1-R6 satisfied
53
+ AARM_VERSION = "1.0"
54
+ AIUC1_ALIGNMENT = "Q1-2026"
51
55
  __all__ = [
52
56
  # Main classes
53
57
  "IrisAgent",
@@ -74,6 +78,10 @@ __all__ = [
74
78
  "CostSummary",
75
79
  "CostEntry",
76
80
  "PricingRegistry",
81
+ "AARM_CONFORMANCE",
82
+ "AARM_VERSION",
83
+ "AIUC1_ALIGNMENT",
84
+ "__version__",
77
85
  "IrisViolationError",
78
86
  "IrisCrisisDetectedError",
79
87
  "IrisHITLRequiredError",
@@ -1,10 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: iris-security-sdk
3
- Version: 0.2.11
3
+ Version: 0.2.14
4
4
  Summary: IRIS — AI Agent Governance SDK. Govern AI agents locally.
5
+ Author-email: Gilbert Martin <gilbert@iris-security.io>
5
6
  License: Apache-2.0
6
- Project-URL: Homepage, https://gimartinb.github.io/iris-sdk/
7
- Project-URL: Repository, https://github.com/gimartinb/iris-sdk
7
+ Project-URL: Homepage, https://iris-security.github.io/iris-sdk/
8
+ Project-URL: Repository, https://github.com/IRIS-Security/iris-sdk
8
9
  Keywords: ai-governance,policy-as-code,cedar,compliance,llm,ai-agents,langchain,anthropic,openai,colorado-ai-act,eu-ai-act,hipaa,fedramp,mcp,claude,iris,guardrails,responsible-ai
9
10
  Classifier: Development Status :: 3 - Alpha
10
11
  Classifier: Intended Audience :: Developers
@@ -61,7 +62,7 @@ IRIS — AI Agent Governance SDK. Govern AI agents locally.
61
62
  Discover, register, and govern AI agents with Cedar policy evaluation,
62
63
  compliance bundles, and local-first governance.
63
64
 
64
- Part of the [IRIS SDK](https://github.com/gimartinb/iris-sdk).
65
+ Part of the [IRIS SDK](https://github.com/IRIS-Security/iris-sdk).
65
66
 
66
67
  ## Install
67
68
 
@@ -4,9 +4,10 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "iris-security-sdk"
7
- version = "0.2.11"
7
+ version = "0.2.14"
8
8
  description = "IRIS — AI Agent Governance SDK. Govern AI agents locally."
9
9
  readme = "README.md"
10
+ authors = [{ name = "Gilbert Martin", email = "gilbert@iris-security.io" }]
10
11
  license = { text = "Apache-2.0" }
11
12
  requires-python = ">=3.10"
12
13
  keywords = [
@@ -62,8 +63,8 @@ dev = [
62
63
  ]
63
64
 
64
65
  [project.urls]
65
- Homepage = "https://gimartinb.github.io/iris-sdk/"
66
- Repository = "https://github.com/gimartinb/iris-sdk"
66
+ Homepage = "https://iris-security.github.io/iris-sdk/"
67
+ Repository = "https://github.com/IRIS-Security/iris-sdk"
67
68
 
68
69
  [tool.setuptools.packages.find]
69
70
  where = ["."]