[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"]