feat: package scaffold — pyproject.toml, src/workbench/ layout

This commit is contained in:
Mortdecai
2026-03-30 07:28:01 -04:00
parent 28dc693781
commit 9755828ae4
7 changed files with 482 additions and 2 deletions
+3
View File
@@ -0,0 +1,3 @@
"""Workbench — MCP server for AI-driven interactive web pages."""
__version__ = "0.2.0"
+5
View File
@@ -0,0 +1,5 @@
"""Allow running as `python -m workbench`."""
from workbench.cli import main
main()