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
+3
View File
@@ -0,0 +1,3 @@
"""Kitty-Workbench — MCP server for AI-driven terminal display panels."""
__version__ = "0.1.0"
+5
View File
@@ -0,0 +1,5 @@
"""Allow running as `python -m kitty_workbench`."""
from kitty_workbench.cli import main
main()