-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (61 loc) · 1.77 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (61 loc) · 1.77 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
64
65
66
67
68
69
70
71
[project]
name = "guidepost-mcp"
version = "0.3.1"
description = "案内の樹形図を辿る MCP サーバー。エージェントが確実に手続きを進めるための決定的な遷移を返す"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
keywords = ["mcp", "agent", "decision-tree", "customer-support", "dialog-flow"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
dependencies = [
"pydantic>=2.7",
"PyYAML>=6.0",
"fastapi>=0.115",
"uvicorn[standard]>=0.32",
"jinja2>=3.1",
"mcp>=1.28,<2",
]
[project.scripts]
guidepost-mcp = "guidepost_mcp.cli:main"
[dependency-groups]
dev = [
"pytest>=8.3",
"httpx>=0.27",
"ruff>=0.8",
"mypy>=1.13",
"types-PyYAML>=6.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/guidepost_mcp"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "SIM", "RUF", "D"]
# 日本語 docstring のため句読点・全角記号まわりの規則を落とす
ignore = ["D400", "D403", "D415", "RUF001", "RUF002", "RUF003"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["D"]
"scripts/**" = ["D"]
[tool.mypy]
python_version = "3.11"
strict = true
files = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
markers = [
"perf: 実時間を測るテスト。共有 CI ランナーでは性能が保証されないので既定から外す(-m perf で明示的に回す)",
]