pyproject.toml•894 B
[project]
name = "pitstop"
version = "0.1.0"
description = "Formula 1 Data MCP Server - Access F1 standings, race data, and more"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Pitstop Contributors" }
]
license = { text = "MIT" }
keywords = ["mcp", "formula1", "f1", "racing", "motorsport"]
dependencies = [
"mcp>=1.0.0",
"fastf1>=3.0.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
]
[build-system]
requires = ["setuptools>=68.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
pitstop = "pitstop.server:main"
[tool.black]
line-length = 120
target-version = ['py310']
[tool.ruff]
line-length = 120
target-version = "py310"