-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 948 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (36 loc) · 948 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
40
41
42
[project]
name = "openstudio-mcp"
version = "1.0.0-beta"
description = "Thin MCP server around OpenStudio CLI with async runs and testable outputs."
requires-python = ">=3.11"
dependencies = [
"fastmcp>=3.1.0,<4.0",
"pydantic>=2.6",
"psutil>=5.9",
"jsonschema>=4.21",
"openstudio==3.11.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-timeout>=2.3.1",
"mcp",
"pyyaml>=6.0",
]
[project.scripts]
openstudio-mcp = "mcp_server.server:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"unit: pure Python tests, no Docker/OpenStudio needed",
"integration: requires Docker + OpenStudio + MCP server",
"llm: requires Claude CLI + MCP server",
]
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.packages.find]
include = ["mcp_server*"]
exclude = ["docker*", "tests*", "scripts*"]