-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
62 lines (56 loc) · 1.36 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "coxs-bazar-itinerary-mcp-server"
version = "0.1.0"
description = "Cox's Bazar AI Itinerary MCP Server"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastmcp>=3.1.0",
"py-key-value-aio[redis]>=0.2.8",
"python-dateutil>=2.9.0.post0",
"python-dotenv>=1.2.1",
"requests>=2.32.5",
"httpx>=0.27.0",
"pydantic-settings>=2.13.1",
]
[project.scripts]
mcp-server = "mcp_server.server:main"
mcp-server-dev = "mcp_server.cli:dev"
mcp-inspector = "mcp_server.cli:mcp_inspector"
lint = "mcp_server.cli:lint"
pre-commit-install = "mcp_server.cli:pre_commit_install"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_server"]
[tool.uv]
package = true
[dependency-groups]
dev = [
"watchdog>=6.0.0",
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.1.0",
"pytest-mock>=3.12.0",
"ruff>=0.15.9",
"pre-commit>=4.5.1",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"
addopts = [
"-v",
"--strict-markers",
"--cov=src/mcp_server",
"--cov-report=term-missing",
"--cov-report=html",
]
markers = [
"unit: Unit tests",
"integration: Integration tests",
"slow: Slow running tests",
]