-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (44 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
47 lines (44 loc) · 1.64 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agent-runtime"
version = "2.2.0"
description = "Community Edition — Agent Runtime: Execution supervisor for multi-agent sessions with privilege rings, saga orchestration, and audit trails"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
authors = [
{name = "Microsoft Corporation", email = "agt@microsoft.com"},
]
maintainers = [
{name = "Agent Governance Toolkit Team", email = "agt@microsoft.com"},
]
keywords = [
"ai", "agents", "runtime", "trust", "multi-agent",
"shared-sessions", "liability", "execution-rings", "saga",
"governance", "safety", "audit", "hash-chain",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
dependencies = [
"agent-hypervisor>=2.1.0",
]
[project.urls]
Homepage = "https://github.com/microsoft/agent-governance-toolkit"
Repository = "https://github.com/microsoft/agent-governance-toolkit"
Documentation = "https://github.com/microsoft/agent-governance-toolkit/tree/main/packages/agent-runtime"
"Bug Tracker" = "https://github.com/microsoft/agent-governance-toolkit/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/agent_runtime"]