[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "xcsift-mcp"
version = "1.0.0"
description = "MCP server for xcsift - parse Xcode build output for AI coding agents"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Johnny Clem", email = "johnny@example.com" }
]
keywords = ["mcp", "xcode", "xcodebuild", "swift", "ai", "coding-agents"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Build Tools",
]
dependencies = [
"mcp>=1.1.0",
"pydantic>=2.0.0",
"httpx>=0.25.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.1.0",
]
[project.scripts]
xcsift-mcp = "xcsift_mcp:main"
[project.urls]
Homepage = "https://github.com/johnnyclem/xcsift_mcp"
Repository = "https://github.com/johnnyclem/xcsift_mcp"
Issues = "https://github.com/johnnyclem/xcsift_mcp/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/xcsift_mcp"]
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E501"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]