forked from microsoft/agent-governance-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
129 lines (115 loc) · 3.58 KB
/
pyproject.toml
File metadata and controls
129 lines (115 loc) · 3.58 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "agent-control-plane"
version = "0.5.0"
description = "Layer 3: The Framework - A deterministic kernel for zero-violation governance in agentic AI systems with POSIX-style signals, VFS, and kernel/user space separation"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [
{ name = "Microsoft Corporation", email = "agentgovtoolkit@microsoft.com" },
]
maintainers = [
{ name = "Microsoft Corporation", email = "agentgovtoolkit@microsoft.com" },
]
keywords = [
"ai",
"agents",
"governance",
"control-plane",
"safety",
"policy",
"framework",
"agentic-ai",
"llm",
"guardrails",
"deterministic",
"kernel",
"signals",
"vfs",
"syscall",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Security",
"Topic :: System :: Systems Administration",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
# Core dependencies - standard library only for zero external deps
dependencies = []
[project.urls]
Homepage = "https://github.com/microsoft/agent-governance-toolkit"
Documentation = "https://github.com/microsoft/agent-governance-toolkit/tree/main/docs"
Repository = "https://github.com/microsoft/agent-governance-toolkit"
"Bug Tracker" = "https://github.com/microsoft/agent-governance-toolkit/issues"
[project.optional-dependencies]
# Development dependencies
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=25.1.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
"pre-commit>=3.0.0",
]
# SQL AST parsing for robust policy enforcement (recommended)
sql = [
"sqlglot>=23.0.0",
]
# Hugging Face Hub integration (for datasets and model cards)
hf = [
"huggingface_hub>=0.20.0",
"datasets>=2.14.0",
]
# Allowed Layer 2 protocol dependencies (optional integrations)
# These are the ONLY external agent-related dependencies allowed
protocols = [
# iatp: Inter-Agent Transport Protocol (for message security)
# "iatp>=1.0.0",
# cmvk: Cryptographic Message Verification Kit (for verification)
# "cmvk>=1.0.0",
# caas: Context-as-a-Service (for context routing)
# "caas>=1.0.0",
]
# Full installation with all protocol integrations
full = [
# "iatp>=1.0.0",
# "cmvk>=1.0.0",
# "caas>=1.0.0",
]
# NOTE: The following dependencies are STRICTLY FORBIDDEN as hard imports:
# - scak (Self-Correcting Agent Kernel) - should implement KernelInterface
# - mute-agent - should use ValidatorInterface
# These packages may depend on agent-control-plane, but NOT vice versa.
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --strict-markers"
[tool.black]
line-length = 100
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false