-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathpyproject.toml
More file actions
169 lines (158 loc) · 4.19 KB
/
pyproject.toml
File metadata and controls
169 lines (158 loc) · 4.19 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agentmesh_platform"
version = "3.0.2"
description = "Public Preview — The Secure Nervous System for Cloud-Native Agent Ecosystems - Identity, Trust, Reward, Governance"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Microsoft Corporation", email = "agentgovtoolkit@microsoft.com"},
]
maintainers = [
{name = "Agent Governance Toolkit Team", email = "agentgovtoolkit@microsoft.com"},
]
keywords = [
"ai",
"agents",
"security",
"governance",
"identity",
"trust",
"a2a",
"mcp",
"iatp",
"zero-trust",
"compliance",
"soc2",
"hipaa",
"eu-ai-act",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration :: Authentication/Directory",
]
requires-python = ">=3.11"
dependencies = [
# Core dependencies
"pydantic[email]>=2.5.0,<3.0",
"cryptography>=45.0.3,<47.0",
"pynacl>=1.5.0,<2.0",
"httpx>=0.27.0,<1.0",
"aiohttp>=3.13.3,<4.0",
"pyyaml>=6.0,<7.0",
"structlog>=24.1.0,<26.0",
"click>=8.1.0,<9.0",
"rich>=13.0.0,<14.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0,<9.0",
"pytest-asyncio>=0.23.0,<2.0",
"pytest-cov>=4.1.0,<6.0",
"hypothesis>=6.100.0,<7.0",
"black>=25.1.0,<26.0",
"ruff>=0.1.0,<1.0",
"mypy>=1.8.0,<2.0",
"fakeredis>=2.21.0,<3.0",
"prometheus-client>=0.19.0,<1.0",
"websockets>=12.0,<17.0",
]
redis = [
"redis>=4.0,<5.0",
]
server = [
"fastapi>=0.115.0,<1.0",
"uvicorn[standard]>=0.27.0,<1.0",
]
storage = [
"redis[asyncio]>=5.0.0,<6.0",
"sqlalchemy[asyncio]>=2.0.0,<3.0",
"asyncpg>=0.29.0,<1.0",
]
observability = [
"opentelemetry-api>=1.20.0,<2.0",
"opentelemetry-sdk>=1.20.0,<2.0",
"opentelemetry-instrumentation-fastapi>=0.41b0,<1.0",
"opentelemetry-exporter-otlp>=1.20.0,<2.0",
"prometheus-client>=0.19.0,<1.0",
]
langchain = [
"langchain-core>=1.2.11,<2.0",
]
django = [
"django>=4.2,<6.0",
]
websocket = [
"websockets>=12.0,<17.0",
]
grpc = [
"grpcio>=1.60.0,<2.0",
"grpcio-tools>=1.60.0,<2.0",
]
agent-os = [
"agent-os-kernel[nexus,iatp]>=1.2.0,<4.0",
]
all = [
"fastapi>=0.115.0,<1.0",
"uvicorn[standard]>=0.27.0,<1.0",
"redis[asyncio]>=5.0.0,<6.0",
"sqlalchemy[asyncio]>=2.0.0,<3.0",
"asyncpg>=0.29.0,<1.0",
"opentelemetry-api>=1.20.0,<2.0",
"opentelemetry-sdk>=1.20.0,<2.0",
"opentelemetry-instrumentation-fastapi>=0.41b0,<1.0",
"opentelemetry-exporter-otlp>=1.20.0,<2.0",
"prometheus-client>=0.19.0,<1.0",
]
[project.scripts]
agentmesh = "agentmesh.cli.main:main"
[project.urls]
Homepage = "https://github.com/microsoft/agent-governance-toolkit"
Documentation = "https://github.com/microsoft/agent-governance-toolkit#readme"
Repository = "https://github.com/microsoft/agent-governance-toolkit"
Issues = "https://github.com/microsoft/agent-governance-toolkit/issues"
Changelog = "https://github.com/microsoft/agent-governance-toolkit/blob/master/CHANGELOG.md"
[tool.hatch.build.targets.wheel]
packages = ["src/agentmesh"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/tests",
"/docs",
"/README.md",
"/LICENSE",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 100
target-version = ["py311"]
[tool.ruff]
line-length = 100
target-version = "py311"
select = ["E", "F", "I", "N", "W", "UP"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true
warn_unused_configs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"fuzz: fuzzing tests with malformed inputs",
"benchmark: crypto operation benchmarks",
"slow: long-running load tests (skip with -m 'not slow')",
"integration: end-to-end integration tests",
]