Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 8 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ build-backend = "hatchling.build"

[project]
name = "mcp4bas"
version = "0.1.0"
description = "Model Context Protocol server for Building Automation Systems"
version = "0.2.0"
description = "MCP4BAS orchestrator — routes building automation tool calls to specialist sibling MCP servers"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
Expand All @@ -14,35 +14,30 @@ authors = [
]
dependencies = [
"mcp[cli]>=1.26.0",
"bacpypes3>=0.0.98",
"pymodbus>=3.8.0",
"pydantic>=2.9.0"
]

[project.optional-dependencies]
bacnet = ["bacpypes3>=0.0.98"]
modbus = ["pymodbus>=3.8.0"]
mqtt = ["paho-mqtt>=2.1.0"]
snmp = ["pysnmp>=4.4.12"]
dashboard = [
"fastapi>=0.115.0",
"uvicorn>=0.30.0"
]
monitoring = ["netifaces>=0.11.0"]
bacnet = ["bacpypes3>=0.0.100"]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.24.0",
"ruff>=0.6.0",
"mypy>=1.11.0"
]

[project.scripts]
mcp4bas = "mcp4bas.server:main"
mcp4bacnet = "mcp4bacnet.server:main"

[tool.hatch.build.targets.wheel]
packages = ["src/mcp4bas"]
packages = ["src/mcp4bas", "src/mcp4bacnet"]
Comment on lines 31 to +35
Copy link

Copilot AI Mar 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pyproject.toml declares a mcp4bacnet console script and includes src/mcp4bacnet in the wheel packages, but there is no src/mcp4bacnet/ directory in this branch. This will break packaging/install. Either add the new mcp4bacnet package, or remove/update the script + packages entries. Also, CI installs dev-requirements.txt (-e .[dev,dashboard]), but the dashboard extra was removed here; dependency installation will fail unless restored or the requirements file is updated.

Copilot uses AI. Check for mistakes.

[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
asyncio_mode = "auto"

[tool.ruff]
line-length = 100
Expand Down
5 changes: 0 additions & 5 deletions src/mcp4bas/bacnet/__init__.py

This file was deleted.

Loading
Loading