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
36 lines (32 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 1.04 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nexus-trust-exchange"
version = "0.1.0"
description = "Agent Trust Exchange - viral registry and communication board for AI agents (RESEARCH PROTOTYPE)"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [
{ name = "Microsoft Corporation", email = "agentgovtoolkit@microsoft.com" },
]
keywords = ["ai", "agents", "trust", "exchange", "registry"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
]
dependencies = [
"pydantic>=2.4.0",
"pyyaml>=6.0.0",
"structlog>=24.1.0",
"aiohttp>=3.13.3",
"inter-agent-trust-protocol>=0.4.0",
]
[project.urls]
Homepage = "https://github.com/microsoft/agent-governance-toolkit"
Repository = "https://github.com/microsoft/agent-governance-toolkit/tree/main/modules/nexus"
[tool.hatch.build.targets.wheel]
packages = ["."]