forked from xyTom/coding-tools-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 946 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (32 loc) · 946 Bytes
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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "coding-tools-mcp"
version = "0.1.4"
description = "Workspace-confined coding tools exposed as an MCP server."
requires-python = ">=3.11"
dependencies = [
"PyJWT>=2.8",
]
readme = "README.md"
license = "LicenseRef-Coding-Tools-MCP-Source-Available"
authors = [{ name = "Coding Tools MCP Contributors" }]
[project.urls]
Homepage = "https://github.com/xyTom/coding-tools-mcp"
Documentation = "https://github.com/xyTom/coding-tools-mcp/tree/main/docs"
Source = "https://github.com/xyTom/coding-tools-mcp"
Issues = "https://github.com/xyTom/coding-tools-mcp/issues"
[project.optional-dependencies]
dev = [
"mypy>=2.1,<2.2",
"ruff>=0.15,<0.16",
"typing_extensions>=4.12",
]
image = [
"Pillow>=10.0",
]
[project.scripts]
coding-tools-mcp = "coding_tools_mcp.server:main"
[tool.setuptools.packages.find]
include = ["coding_tools_mcp*"]