[project] name = "golf-coach" version = "0.7.0" description = "MCP server that fetches a user's Trackman Golf stats (handicap, rounds, practice, shots, club gapping)." readme = "README.md" requires-python = ">=3.11" license = "MIT" license-files = ["LICENSE"] authors = [{ name = "Bjorn Jonsson", email = "bjorn@avo.sh" }] keywords = ["mcp", "model-context-protocol", "trackman", "golf", "llm", "claude"] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Topic :: Games/Entertainment", "Topic :: Scientific/Engineering :: Information Analysis", ] dependencies = [ "fastmcp>=2.0.0", "httpx>=0.27", ] [project.urls] Homepage = "https://github.com/bjornj12/golf-coach" Repository = "https://github.com/bjornj12/golf-coach" Issues = "https://github.com/bjornj12/golf-coach/issues" [project.scripts] golf-coach = "golf_coach.server:main" [project.optional-dependencies] login = [ "playwright>=1.40", ] dev = [ "pytest>=8.0", "pytest-asyncio>=0.23", "ruff>=0.6", "mypy>=1.10", ] [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["src/golf_coach"] # Bundle the coaching skills into the package so the server can serve them as MCP # prompts (single source of truth stays at repo-root skills/). [tool.hatch.build.targets.wheel.force-include] "skills" = "golf_coach/skills" [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"] [tool.ruff] line-length = 100 target-version = "py311" src = ["src", "tests"] [tool.ruff.lint] select = ["E", "F", "I", "UP", "B"] ignore = ["E501"] # long lines are caught by formatter intent, not blocking here [tool.mypy] python_version = "3.11" files = ["src"] ignore_missing_imports = true check_untyped_defs = true warn_unused_ignores = true