Distribution name, import package, entry point script, MCP config, and all internal references updated. Git tracks the directory rename so file history is preserved.
36 lines
823 B
TOML
36 lines
823 B
TOML
[project]
|
|
name = "mcnoaa-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.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]"]
|