-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 903 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (35 loc) · 903 Bytes
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
[project]
name = "agentic-predictive-maintenance"
version = "0.1.0"
description = "Sentinel — a vendor-neutral Agentic Predictive-Maintenance POC (ML health model + AI maintenance agent + human-in-the-loop dashboard)"
readme = "README.md"
requires-python = ">=3.10,<3.13"
dependencies = [
"fastapi>=0.110",
"uvicorn[standard]>=0.29",
"scikit-learn>=1.3",
"numpy>=1.24",
"pandas>=2.0",
"joblib>=1.3",
"boto3>=1.43.54",
"mcp>=1.28.1",
"a2a-sdk>=0.2.5,<0.3",
"google-genai>=2.14.0",
]
[project.scripts]
sentinel = "run:main"
[tool.uv]
package = false
[dependency-groups]
dev = [
"pytest>=9.1.1",
"pytest-asyncio>=1.4.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
asyncio_mode = "auto"
addopts = "-ra -q"
markers = [
"integration: spawns/serves a real MCP or A2A endpoint (slower). Deselect with -m 'not integration'.",
]