Every example uses actual NOAA data captured from the live API. Larger responses linked as JSON files in examples/ directory.
33 lines
719 B
TOML
33 lines
719 B
TOML
[project]
|
|
name = "noaa-tides"
|
|
version = "2026.02.21"
|
|
description = "FastMCP server for NOAA CO-OPS Tides and Currents API"
|
|
authors = [{ name = "Ryan Malloy", email = "ryan@supported.systems" }]
|
|
requires-python = ">=3.12"
|
|
dependencies = ["fastmcp>=3.0.1"]
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
|
|
[project.scripts]
|
|
noaa-tides = "noaa_tides.server:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/noaa_tides"]
|
|
|
|
[tool.ruff]
|
|
target-version = "py312"
|
|
line-length = 100
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "W"]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
|
|
[dependency-groups]
|
|
dev = ["pytest>=8", "pytest-asyncio>=0.24", "ruff>=0.9"]
|