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
+18
View File
@@ -0,0 +1,18 @@
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "workbench-server"
version = "0.2.0"
description = "MCP server that lets AI CLIs build interactive web pages served over LAN"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.26.0",
"aiohttp>=3.9.0",
]
[project.scripts]
workbench = "workbench.cli:main"