-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 1.47 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
[build-system]
requires = ["setuptools>=68.0,<69.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentmesh_lightning"
version = "3.0.2"
description = "Public Preview — Agent-Lightning RL integration for the Agent Governance Toolkit: governed training with policy enforcement"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
authors = [
{name = "Microsoft Corporation", email = "agentgovtoolkit@microsoft.com"},
]
maintainers = [
{name = "Agent Governance Toolkit Team", email = "agentgovtoolkit@microsoft.com"},
]
keywords = [
"ai-agents", "governance", "reinforcement-learning",
"agentmesh-lightning", "agent-os", "enterprise-ai"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = []
[project.optional-dependencies]
agent-os = ["agent-os-kernel>=2.0.0,<4.0"]
dev = ["pytest>=7.0,<8.0", "pytest-cov"]
[project.urls]
Homepage = "https://github.com/microsoft/agent-governance-toolkit"
Repository = "https://github.com/microsoft/agent-governance-toolkit"
"Bug Tracker" = "https://github.com/microsoft/agent-governance-toolkit/issues"
[tool.setuptools.packages.find]
where = ["src"]