[project]
name = "owlocr-mcp"
version = "0.1.0"
description = "MCP server for PDF OCR using macOS Vision Framework"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"mcp>=1.0.0",
"pyobjc-framework-Vision>=10.0",
"pyobjc-framework-Quartz>=10.0",
"pypdfium2>=4.0.0",
"pillow>=10.0.0",
"jiwer>=4.0.0",
]
[project.scripts]
owlocr-mcp = "owlocr_mcp.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/owlocr_mcp"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]