-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
50 lines (43 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
48
49
50
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "mcpstack-your-tool-name"
dynamic = ["version"]
description = "Create your MCPStack tool with this template repository!"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "Provost Simon", email = "s.g.provost@kent.ac.uk" }]
keywords = ["mcp", "mcpstack", "mcpPipeline", "tool", "template"]
dependencies = [
"typer>=0.9.0",
"beartype>=0.21.0",
"rich>=13.0.0",
"rich-argparse>=1.4.0",
"rich-pyfiglet>=1.0.0",
"click>=8.1.8",
"mcpstack>=0.0.2",
]
[dependency-groups]
dev = [
"pytest>=7.4",
"ruff>=0.4.0",
"pre-commit>=3.0.0"
]
# Let MCPStack discover external tools via entry points
[project.entry-points."mcpstack.tools"]
your_tool_name = "mcpstack_your_tool_name.tool:YourTool"
# Let MCPStack discover tool-specific CLIs (mounted by the mother library)
[project.entry-points."mcpstack.tool_clis"]
your_tool_name = "mcpstack_your_tool_name.cli:YourToolCLI.get_app"
[tool.ruff]
line-length = 88
target-version = "py310"
src = ["src"]
[tool.ruff.lint]
select = ["E","W","F","I","UP","RUF","B","C4"]
ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]