-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (74 loc) · 1.8 KB
/
pyproject.toml
File metadata and controls
83 lines (74 loc) · 1.8 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
[build-system]
requires = ["setuptools>=68", "wheel", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "agentops-accelerator"
dynamic = ["version"]
description = "Release readiness gates and evidence for Microsoft Foundry agents"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"typer>=0.12,<1.0",
"pydantic>=2,<3",
"ruamel.yaml>=0.18,<1.0",
"azure-ai-projects>=2.0.1,<3.0",
]
license = { file = "LICENSE" }
[project.optional-dependencies]
mcp = ["mcp>=1.0,<2"]
foundry = [
"azure-ai-evaluation>=1.0,<2.0",
"azure-identity>=1.17,<2.0",
"azure-monitor-opentelemetry>=1.6,<2.0",
"pandas>=2.0,<3.0",
]
agent = [
"fastapi>=0.110,<1.0",
"uvicorn[standard]>=0.30,<1.0",
"httpx>=0.27,<1.0",
"cryptography>=42",
"markdown>=3.6,<4.0",
"azure-monitor-query>=1.3,<2.0",
"azure-monitor-opentelemetry>=1.6,<2.0",
"azure-identity>=1.17,<2.0",
"azure-mgmt-cognitiveservices>=13.5,<14.0",
"azure-mgmt-monitor>=6.0,<7.0",
]
[project.scripts]
agentops = "agentops.cli.app:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"agentops.templates" = [
"agentops.yaml",
"agent.yaml",
"smoke.jsonl",
"sample-traces.jsonl",
"icon.png",
"foundry.svg",
".gitignore",
"project.gitignore",
"waf-checklist.csv",
"workflows/*.yml",
"pipelines/azuredevops/*.yml",
"skills/*/SKILL.md",
"agent-server/*",
]
"agentops.agent.knowledge" = ["*.csv"]
[dependency-groups]
dev = [
"azure-ai-evaluation>=1.0,<2.0",
"mypy>=1.19.1",
"pre-commit>=4.0",
"pytest>=8.0",
"pytest-asyncio>=0.24",
"pytest-cov>=5.0",
"ruff>=0.9",
]
[tool.setuptools_scm]
local_scheme = "no-local-version"
[tool.mypy]
plugins = ["pydantic.mypy"]
disable_error_code = ["import-untyped"]