-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1.03 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
[project]
name = "gitlab-mcp-server"
version = "0.1.0"
description = "GitLab MCP API Server - Model Context Protocol server for GitLab integration"
authors = [{name = "13shivam", email = "github.com/@13shivam"}]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastmcp>=2.3.4,<2.4.0",
"python-gitlab>=4.0.0",
"pydantic>=2.10.0",
"python-dotenv>=1.0.1",
"beautifulsoup4>=4.12.3",
"markdownify>=0.11.6",
"cachetools>=5.0.0",
"click>=8.1.7",
"uvicorn>=0.27.1",
"dependency-injector>=4.41.0",
]
[project.scripts]
gitlab-mcp = "src.server:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
"bandit>=1.7.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.ruff]
line-length = 100
select = ["E", "F", "I", "N", "W"]