-
Notifications
You must be signed in to change notification settings - Fork 215
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (55 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
63 lines (55 loc) · 1.44 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/agent", "src/llm"]
[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",
"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"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"anyio>=4.9.0",
"pytest-anyio>=0.0.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",
]
[tool.uv]
package = true
[tool.pytest.ini_options]
pythonpath = ["src"]
norecursedirs = ["src/tmp"]
filterwarnings = [
"ignore:Core Pydantic V1 functionality:UserWarning",
]