[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "imessage-max"
version = "0.4.4"
description = "Intent-aligned MCP server for iMessage"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Rob Dezendorf" }
]
dependencies = [
"fastmcp>=0.4,<3",
"pyobjc-framework-Contacts>=12.1",
"phonenumbers>=8.13",
"python-dateutil>=2.8",
"Pillow>=10.0",
"pillow-heif>=0.16",
"imageio-ffmpeg>=0.5",
"httpx>=0.27",
"beautifulsoup4>=4.12",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"pytest-httpx>=0.30",
]
[project.scripts]
imessage-max = "imessage_max.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/imessage_max"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]