-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 742 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (26 loc) · 742 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
[project]
name = "comptext-mcp"
version = "0.1.0"
description = "CompText MCP bridge for OpenCode, Rust workspaces, replay digests, and deterministic context packs."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "ProfRandom92" }]
keywords = ["mcp", "opencode", "rust", "comptext", "context", "replay"]
dependencies = [
"mcp>=1.0.0,<2.0.0",
"pydantic>=2.0.0,<3.0.0"
]
[project.scripts]
comptext-mcp = "comptext_mcp.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/comptext_mcp"]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py310"