-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (55 loc) · 1.52 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (55 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[project]
name = "pitstop-f1"
version = "0.5.0"
description = "All-in-one F1 MCP Server"
readme = "README.md"
requires-python = ">=3.13"
authors = [{ name = "Praneeth Ravuri", email = "ravpraneeth@gmail.com" }]
license = { text = "MIT" }
keywords = ["formula1", "f1", "mcp", "model-context-protocol"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"fastmcp==3.4.4",
"fastf1==3.8.3",
"pydantic==2.13.4",
"httpx[http2]==0.28.1",
"feedparser==6.0.12",
"python-dotenv==1.2.2",
"hishel==1.3.0",
"tenacity==9.1.4",
"uvloop==0.22.1",
]
[project.urls]
Homepage = "https://github.com/praneethravuri/pitstop"
Repository = "https://github.com/praneethravuri/pitstop"
[project.scripts]
pitstop = "pitstop.server:main"
# alias so `uvx pitstop-f1` resolves (uvx runs the entry point matching the dist name)
pitstop-f1 = "pitstop.server:main"
pitstop-db-seed = "pitstop.db.seed:main"
pitstop-db-update = "pitstop.db.updater:main"
[dependency-groups]
dev = [
"pytest==9.1.1",
"pytest-asyncio==1.4.0",
"pytest-httpx==0.36.2",
"ruff==0.15.21",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/pitstop"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = ["E501"]