[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcp-server-geolocation"
dynamic = ["version"]
description = "MCP server for geolocation services including WalkScore API"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
keywords = ["mcp", "geolocation", "walkscore", "walkability", "transit", "bike"]
authors = [
{ name = "MCP Servers Contributors" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mcp>=1.0.0",
"httpx>=0.25.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
]
[project.urls]
Homepage = "https://github.com/modelcontextprotocol/servers"
Repository = "https://github.com/modelcontextprotocol/servers"
Issues = "https://github.com/modelcontextprotocol/servers/issues"
[project.scripts]
mcp-server-geolocation = "mcp_server_geolocation:main"
[tool.hatch.version]
path = "src/mcp_server_geolocation/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_server_geolocation"]
[tool.black]
line-length = 88
target-version = ['py38']
[tool.ruff]
line-length = 88
target-version = "py38"
select = ["E", "F", "I", "N", "W"]