[build-system]
requires = ["hatchling>=1.26"]
build-backend = "hatchling.build"
[project]
name = "frankfurter-forex-mcp"
version = "0.1.0"
description = "MCP server for currency rates and conversion using Frankfurter API"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"httpx>=0.27.0",
"mcp>=1.15.0",
"pydantic>=2.8.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.24.0",
"respx>=0.21.1",
"ruff>=0.12.0",
]
[project.scripts]
frankfurter-forex-mcp = "frankfurter_forex_mcp.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/frankfurter_forex_mcp"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]