Files
kitty-workbench/pyproject.toml
T

22 lines
495 B
TOML

[build-system]
requires = ["setuptools>=68.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "kitty-workbench"
version = "0.1.0"
description = "MCP server that gives AI CLIs a rich interactive display panel in the terminal"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.26.0",
"textual>=0.70.0",
]
[project.optional-dependencies]
svg = ["cairosvg"]
[project.scripts]
kitty-workbench = "kitty_workbench.cli:main"