-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.72 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (49 loc) · 1.72 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pitstop-cli"
version = "1.1.0"
description = "JSON-first CLI + MCP server for Italian fuel-station prices and EV charging — MIMIT, OpenStreetMap, ISTAT."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
dependencies = []
authors = [{ name = "Josef M. Gallmetzer" }]
keywords = [
"fuel", "prices", "italy", "mimit", "carburanti",
"ev", "charging", "openstreetmap",
"cli", "agent", "mcp", "llm",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/galjos/pitstop-cli"
Repository = "https://github.com/galjos/pitstop-cli"
Changelog = "https://github.com/galjos/pitstop-cli/blob/main/CHANGELOG.md"
Issues = "https://github.com/galjos/pitstop-cli/issues"
[project.optional-dependencies]
# Upper bound is load-bearing: mcp 2.0.0 (2026-07-28) removed mcp.server.fastmcp,
# which mcp_server.py imports. Lift it only together with that migration.
mcp = ["mcp>=1.0,<2"]
dev = ["pytest>=7", "mcp>=1.0,<2"]
[project.scripts]
pitstop = "pitstop.cli:main"
pitstop-mcp = "pitstop.mcp_server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/pitstop"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]