-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.21 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (40 loc) · 1.21 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "defectdojo-mcp"
version = "0.1.0"
description = "DefectDojo Intelligence MCP Server — permission-preserving OSS v2.58.4 REST adapter with Pro capability parity"
readme = "README.md"
requires-python = ">=3.11"
license = "AGPL-3.0-only"
authors = [{ name = "Zeeshan Sultan" }]
keywords = ["defectdojo", "mcp", "security", "appsec", "model-context-protocol"]
# No "License ::" classifier: PEP 639 makes it a conflict alongside the SPDX
# `license` expression above, and build backends reject or warn on the pair.
classifiers = [
"Programming Language :: Python :: 3.11",
"Topic :: Security",
]
dependencies = [
"mcp>=1.4.0",
"httpx>=0.27",
"pydantic>=2.6",
"pyyaml>=6.0",
"structlog>=24.1",
]
[project.optional-dependencies]
db = ["asyncpg>=0.29"]
dev = ["pytest>=8", "pytest-asyncio>=0.23", "ruff>=0.5", "mypy>=1.10"]
[project.scripts]
defectdojo-mcp = "defectdojo_mcp.main:main"
[tool.hatch.build.targets.wheel]
packages = ["src/defectdojo_mcp"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]