pyproject.toml•618 B
[project]
name = "mcp-invoice"
version = "0.1.0"
description = "MCP server for invoice and receipt processing with OCR and PDF tools"
requires-python = ">=3.10"
dependencies = [
"pathlib",
"mcp[cli]>=1.5.0",
"pdf2image",
"pyobjc-core>=11.0",
"httpx>=0.28.1",
"pyobjc-framework-vision>=11.0",
"pypdf2",
"pillow",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_invoice"]
[project.scripts]
mcp-invoice = "mcp_invoice:main"