-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (44 loc) · 1.14 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcp-compliance-grc"
version = "0.1.0"
description = "MCP server for GRC workflows — maps controls to code evidence and drafts compliance narratives"
readme = "README.md"
license = { text = "Apache-2.0" }
requires-python = ">=3.12"
authors = [{ name = "Brian Pelow", email = "brianpelow@github" }]
keywords = ["mcp", "grc", "compliance", "soc2", "iso27001", "fintech", "ai-agents"]
dependencies = [
"fastmcp>=0.4.0",
"httpx>=0.27.0",
"pydantic>=2.7.0",
"openai>=1.30.0",
"pyyaml>=6.0.1",
"rich>=13.7.0",
"jinja2>=3.1.4",
]
[project.scripts]
mcp-compliance-grc = "mcpgrc.server:main"
[project.optional-dependencies]
dev = [
"pytest>=8.2.0",
"pytest-cov>=5.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.4.0",
"mypy>=1.10.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/mcpgrc"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.mypy]
python_version = "3.12"
strict = true
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"