mcblmplss/pyproject.toml
Ryan Malloy 97bf173fd0 Add batch PLSS queries with optional county validation
- get_plss_details_batch: query multiple coordinates in parallel
- Census TIGERweb integration for county lookups (layer 82)
- Returns unique_townships for discovering T/R combinations in a grid
- County data useful for validating sample points fall within expected area

Version bump to 2026.01.25
2026-01-25 13:04:54 -07:00

65 lines
1.5 KiB
TOML

[project]
name = "mcblmplss"
version = "2026.01.25"
description = "MCP server for querying BLM land data: PLSS, land manager, mining claims, grazing, wild horses, recreation, wilderness, rivers, and ACECs"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
authors = [
{name = "Ryan Malloy", email = "ryan@supported.systems"}
]
keywords = [
"mcp",
"fastmcp",
"blm",
"plss",
"cadastral",
"land-survey",
"gis",
"mining-claims",
"surface-management",
"land-ownership",
"public-lands",
"grazing",
"wild-horses",
"recreation",
"wilderness",
"wild-rivers",
"acec",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"fastmcp>=2.13.2",
"httpx>=0.28.1",
]
[project.urls]
Homepage = "https://git.supported.systems/MCP/mcblmplss"
Repository = "https://git.supported.systems/MCP/mcblmplss"
Issues = "https://git.supported.systems/MCP/mcblmplss/issues"
[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"]