-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (44 loc) · 1.1 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (44 loc) · 1.1 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "spawn"
version = "0.1.0"
description = "Meta-MCP server - analyzes patterns in AI agent sessions and generates new MCP servers from them"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "Fredrik Bratten", email = "fredrik.bratten@adaptivearts.ai"}
]
keywords = ["mcp", "patterns", "automation", "code-generation"]
dependencies = [
"mcp>=1.0.0",
"pyyaml>=6.0",
"jinja2>=3.1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.4",
"pyright>=1.1",
]
[project.scripts]
mcp-builder-mcp = "mcp_builder_mcp.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_builder_mcp"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
pythonpath = ["src"]
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP", "B", "C4", "SIM"]
ignore = ["E402"]
[tool.pyright]
pythonVersion = "3.11"
typeCheckingMode = "strict"
include = ["src"]