-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (45 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
55 lines (45 loc) · 1.08 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
[project]
name = "redhat-status-mcp"
dynamic = ["version"]
description = "MCP server exposing Red Hat status page data to LLMs"
readme = "README.md"
authors = [{ name = "Major Hayden", email = "major@mhtx.net" }]
requires-python = ">=3.12,<3.13"
dependencies = [
"cachetools>=5.5.2",
"fastmcp>=3.1.1",
"httpx>=0.28.1",
"pydantic-settings>=2.13.1",
"tenacity>=9.1.4",
]
[project.scripts]
redhat-status-mcp = "redhat_status_mcp:main"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.1.0",
"pytest-randomly>=4.0.1",
"ruff>=0.15.7",
"ty>=0.0.24",
"radon>=6.0.1",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
target-version = "py312"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
packages = ["src/redhat_status_mcp"]
[tool.coverage.run]
source = ["redhat_status_mcp"]
[tool.coverage.report]
fail_under = 85