feat: project scaffold with pyproject.toml and package structure
This commit is contained in:
@@ -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"
|
||||
Reference in New Issue
Block a user