Files
strava-mcp-server/pyproject.toml
T
matthias 2b061f4791
CI/CD Pipeline / Lint & Check (push) Successful in 55s
CI/CD Pipeline / Build & Push Docker Image (push) Failing after 1m14s
feat: implement dynamic versioning and add automated Docker CI/CD workflow with enhanced documentation
2026-05-09 02:57:41 +02:00

51 lines
1.4 KiB
TOML

[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "strava-mcp-server"
dynamic = ["version"]
description = "A Model Context Protocol (MCP) server that exposes the Strava API v3 as tools, resources, and prompts for AI agents."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
keywords = ["strava", "mcp", "model-context-protocol", "ai", "llm", "fitness"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
]
dependencies = [
"fastapi",
"uvicorn",
"mcp[cli]",
"httpx",
"python-dotenv",
]
[project.urls]
Homepage = "https://git.hnrx.net/hnrx/strava-mcp-server"
Repository = "https://git.hnrx.net/hnrx/strava-mcp-server"
"Bug Tracker" = "https://git.hnrx.net/hnrx/strava-mcp-server/issues"
[project.scripts]
strava-mcp = "strava_mcp_server.main:main"
strava-mcp-get-token = "strava_mcp_server.get_token:main"
[dependency-groups]
dev = [
"ruff>=0.15.12",
]
[tool.hatch.version]
source = "vcs"