summaryrefslogtreecommitdiff
path: root/servers/gitlab_glab/pyproject.toml
blob: 3d1ce87b96ee7afdb3196d6a76e2357d4b411361 (plain)
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
[project]
name = "mcp-server-gitlab-glab"
version = "0.1.0"
description = "[DEPRECATED: Use mcp-server-gitlab-python instead] An MCP server for GitLab CLI integration"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
    {name = "Your Name", email = "your.email@example.com"},
]
dependencies = [
    "mcp>=1.6.0",
    "pydantic>=2.11.0",
]

[tool.uv]
dev-dependencies = [
    "pytest>=8.3.5",
    "pytest-asyncio>=0.26.0",
    "pytest-cov>=6.0.0",
    "ruff>=0.3.0",
]

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
asyncio_mode = "auto"

[project.scripts]
mcp-gitlab-glab = "mcp_server_gitlab_glab.cli:run_server"

[tool.ruff]
line-length = 88
target-version = "py311"
select = ["E", "F", "B", "I", "N", "UP", "ANN", "D"]
ignore = ["ANN101", "D203", "D213"]

[tool.ruff.pydocstyle]
convention = "google"