feat: project scaffold with pyproject.toml and package structure

This commit is contained in:
Mortdecai
2026-03-29 19:02:51 -04:00
commit 79f1fd3f75
4 changed files with 50 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
[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"