This repository was archived by the owner on Mar 7, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
163 lines (152 loc) · 3.72 KB
/
Copy pathpyproject.toml
File metadata and controls
163 lines (152 loc) · 3.72 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agentmesh-platform"
version = "2.0.1"
description = "Community Edition — The Secure Nervous System for Cloud-Native Agent Ecosystems - Identity, Trust, Reward, Governance"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Imran Siddique", email = "imran.siddique@microsoft.com"}
]
keywords = [
"ai",
"agents",
"security",
"governance",
"identity",
"trust",
"a2a",
"mcp",
"iatp",
"zero-trust",
"compliance",
"soc2",
"hipaa",
"eu-ai-act",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software 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",
"cryptography>=42.0.0",
"pynacl>=1.5.0",
"httpx>=0.26.0",
"aiohttp>=3.9.0",
"pyyaml>=6.0",
"structlog>=24.1.0",
"click>=8.1.0",
"rich>=13.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.1.0",
"hypothesis>=6.100.0",
"black>=24.1.0",
"ruff>=0.1.0",
"mypy>=1.8.0",
"fakeredis>=2.21.0",
]
redis = [
"redis>=4.0",
]
server = [
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
]
storage = [
"redis[asyncio]>=5.0.0",
"sqlalchemy[asyncio]>=2.0.0",
"asyncpg>=0.29.0",
]
observability = [
"opentelemetry-api>=1.20.0",
"opentelemetry-sdk>=1.20.0",
"opentelemetry-instrumentation-fastapi>=0.41b0",
"opentelemetry-exporter-otlp>=1.20.0",
"prometheus-client>=0.19.0",
]
langchain = [
"langchain-core>=0.1.0",
]
django = [
"django>=3.2",
]
websocket = [
"websockets>=12.0",
]
grpc = [
"grpcio>=1.60.0",
"grpcio-tools>=1.60.0",
]
agent-os = [
"agent-os-kernel[nexus,iatp]>=1.2.0",
]
all = [
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
"redis[asyncio]>=5.0.0",
"sqlalchemy[asyncio]>=2.0.0",
"asyncpg>=0.29.0",
"opentelemetry-api>=1.20.0",
"opentelemetry-sdk>=1.20.0",
"opentelemetry-instrumentation-fastapi>=0.41b0",
"opentelemetry-exporter-otlp>=1.20.0",
"prometheus-client>=0.19.0",
]
[project.scripts]
agentmesh = "agentmesh.cli.main:main"
[project.urls]
Homepage = "https://github.com/imran-siddique/agent-mesh"
Documentation = "https://github.com/imran-siddique/agent-mesh#readme"
Repository = "https://github.com/imran-siddique/agent-mesh"
Issues = "https://github.com/imran-siddique/agent-mesh/issues"
Changelog = "https://github.com/imran-siddique/agent-mesh/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')",
]