22 lines
464 B
TOML
22 lines
464 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[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"
|