[project]
name = "unlock-reso-remote-mcp"
version = "0.1.0"
description = "MCP server for UNLOCK MLS real estate data via Bridge Interactive's RESO API with HTTP Remote transport"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp[cli]>=1.4.0",
"mcp[server]>=1.4.0",
"aiohttp>=3.9.0",
"python-dotenv>=1.0.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
]
[project.scripts]
unlock-reso-remote-mcp = "main:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"pytest-mock>=3.10.0",
"aioresponses>=0.7.4",
"freezegun>=1.2.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
"httpx>=0.25.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"
[tool.coverage.run]
source = ["src"]
omit = ["*/tests/*", "*/__init__.py"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if self.debug:",
"if __name__ == .__main__.:",
"raise NotImplementedError",
"pass",
"except ImportError:",
]
[tool.ruff]
line-length = 88
target-version = "py310"
select = [
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
"W", # pycodestyle warnings
"B", # flake8-bugbear
"UP", # pyupgrade
]
ignore = ["E501"] # line too long
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
strict = true
[dependency-groups]
dev = [
"aioresponses>=0.7.8",
"freezegun>=1.5.3",
"pytest>=8.4.1",
"pytest-asyncio>=1.1.0",
"pytest-cov>=6.2.1",
"pytest-mock>=3.14.1",
"httpx>=0.25.0",
]