-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 792 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 792 Bytes
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
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "entur-mcp"
version = "0.1.0"
description = "Model Context Protocol server for Entur's Journey Planner APIs."
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
dependencies = [
"fastmcp>=2.11",
"httpx>=0.28",
"pydantic>=2.8",
]
[project.optional-dependencies]
test = [
"pytest>=8.2",
"pytest-asyncio>=0.23",
"respx>=0.21",
]
[project.scripts]
entur-mcp = "entur_mcp.__main__:main"
[project.urls]
Homepage = "https://github.com/simeneide/entur-mcp"
Repository = "https://github.com/simeneide/entur-mcp"
Changelog = "https://github.com/simeneide/entur-mcp/releases"
[tool.pytest.ini_options]
addopts = "-q"
pythonpath = [
"entur_mcp",
]