Adds missing standard artifacts: - README.md (if missing) - AGENTS.md (AI agent contract) - PLAN.md (current sprint) - STATUS.md (where we are) - DEVELOPMENT.md (dev workflow) - DEPLOYMENT.md (deploy procedure) - TESTING.md (test strategy) - DECISIONS.md (ADR index + templates) - .github/CODEOWNERS - .github/workflows/ci.yml Preserves all existing artifacts. Refs: RugMunchMedia/fleet-template
15 lines
365 B
TOML
15 lines
365 B
TOML
[project]
|
|
name = "walletpress-mcp"
|
|
version = "1.0.0"
|
|
description = "Standalone MCP Server for WalletPress — connect any MCP client to your wallet engine"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"mcp>=1.0.0",
|
|
"httpx>=0.27.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
walletpress-mcp = "walletpress_mcp:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["walletpress_mcp*"]
|