Query Section/Township/Range from lat/long coordinates using the BLM National Cadastral ArcGIS REST service. Tools: - get_plss_location: human-readable PLSS description - get_plss_details: structured data with full metadata
39 lines
943 B
TOML
39 lines
943 B
TOML
[project]
|
|
name = "mcblmplss"
|
|
version = "2024.12.03"
|
|
description = "FastMCP server for querying BLM Public Land Survey System (PLSS) data by coordinates"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
authors = [
|
|
{name = "Ryan Malloy", email = "ryan@supported.systems"}
|
|
]
|
|
keywords = ["mcp", "fastmcp", "blm", "plss", "cadastral", "land-survey", "gis"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Topic :: Scientific/Engineering :: GIS",
|
|
]
|
|
dependencies = [
|
|
"fastmcp>=2.13.2",
|
|
"httpx>=0.28.1",
|
|
]
|
|
|
|
[project.scripts]
|
|
mcblmplss = "mcblmplss:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/mcblmplss"]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py311"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "UP"]
|