forked from IBM/AssetOpsBench
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (73 loc) · 2.11 KB
/
pyproject.toml
File metadata and controls
81 lines (73 loc) · 2.11 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/agent", "src/evaluation", "src/llm", "src/observability", "src/servers"]
[project]
name = "assetopsbench-mcp"
version = "0.1.0"
description = "Add your description here"
readme = "INSTRUCTIONS.md"
requires-python = ">=3.12"
dependencies = [
"couchdb3>=2.0.2",
"fastmcp>=2.14.5",
"mcp[cli]>=1.26.0",
"pendulum>=3.2.0",
"pydantic>=2.12.5",
"requests>=2.32.5",
"numpy>=1.24",
"pandas>=2.0",
"pyyaml>=6.0",
"litellm==1.81.13",
"claude-agent-sdk>=0.0.14",
"openai-agents>=0.0.7",
"deepagents>=0.5.3",
"langchain-mcp-adapters>=0.2.2",
"langchain-openai>=1.1.0",
"python-dotenv>=1.0",
"scipy>=1.10.0",
]
[project.scripts]
plan-execute = "agent.cli:main"
claude-agent = "agent.claude_agent.cli:main"
iot-mcp-server = "servers.iot.main:main"
utilities-mcp-server = "servers.utilities.main:main"
fmsr-mcp-server = "servers.fmsr.main:main"
tsfm-mcp-server = "servers.tsfm.main:main"
wo-mcp-server = "servers.wo.main:main"
vibration-mcp-server = "servers.vibration.main:main"
openai-agent = "agent.openai_agent.cli:main"
deep-agent = "agent.deep_agent.cli:main"
evaluate = "evaluation.cli:main"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"anyio>=4.9.0",
"pytest-anyio>=0.0.0",
"opentelemetry-api>=1.27.0",
"opentelemetry-sdk>=1.27.0",
]
# Optional heavy ML deps for the TSFM server.
# tsfm_public must be installed separately: pip install git+https://github.com/ibm-granite/granite-tsfm
tsfm = [
"torch>=2.0",
"transformers>=4.40",
]
# Optional OpenTelemetry tracing for agent runners.
# Enable by setting OTEL_EXPORTER_OTLP_ENDPOINT (e.g. http://localhost:4318).
otel = [
"opentelemetry-api>=1.27.0",
"opentelemetry-sdk>=1.27.0",
"opentelemetry-exporter-otlp-proto-http>=1.27.0",
"opentelemetry-instrumentation-httpx>=0.48b0",
]
[tool.uv]
package = true
[tool.pytest.ini_options]
pythonpath = ["src"]
norecursedirs = ["src/tmp"]
anyio_mode = "auto"
filterwarnings = [
"ignore:Core Pydantic V1 functionality:UserWarning",
]