Files
nike/pyproject.toml
Robert Helewka ee8436d5b8 feat: implement MCP server and dashboard for football data platform
Add complete Nike football data platform with:
- FastMCP server exposing football data tools over HTTP
- RapidAPI client for free-api-live-football-data integration
- Bootstrap web dashboard with live match/standings views
- REST API endpoints for dashboard consumption
- Docker support with multi-stage build
- Comprehensive README with architecture docs
- Minimal .gitignore replacing verbose Python template
2026-03-21 18:19:42 +00:00

31 lines
600 B
TOML

[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "nike"
version = "0.1.0"
description = "Football data platform with MCP server"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.30",
"fastmcp>=2.0",
"psycopg2-binary>=2.9",
"python-dotenv>=1.0",
"requests>=2.32",
"jinja2>=3.1",
]
[project.optional-dependencies]
dev = [
"httpx>=0.27", # for FastAPI test client
"pytest>=8",
"pytest-asyncio>=0.24",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["nike*"]