mcnoaa-tides/pyproject.toml
Ryan Malloy 962ee2e0e0 Bump version to 2026.02.22 for initial PyPI release
Adds Starlight docs site and MCP HTTP transport support.
2026-02-23 03:58:52 -07:00

36 lines
823 B
TOML

[project]
name = "mcnoaa-tides"
version = "2026.02.22"
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.optional-dependencies]
viz = ["matplotlib>=3.8", "plotly>=5.18"]
[project.scripts]
mcnoaa-tides = "mcnoaa_tides.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcnoaa_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", "mcnoaa-tides[viz]"]