Files
PMOCrazycoder/pyproject.toml
Eric Coissac 2d53f89172 Refactor MCP server structure and add AI commit tool
- Restructure src/ into package src/crazy_mcp with modular tools
- Add jj.py and sandbox.py tool modules for jujutsu and sandbox management
- Remove circular dependency on crazy-mcp from pyproject.toml
- Fix async get_state call in PMOCrazyCoder.py increment tool
- Add bin/jj-ai-commit.sh for AI-generated commit messages from diffs
- Update entrypoint to copy all bin scripts and create config directory
2026-02-21 23:28:22 +00:00

33 lines
481 B
TOML

[project]
name = "pmocrazykoder"
version = "0.1.0"
description = "A crazy MCP server"
requires-python = ">=3.10"
dependencies = [
]
[project.optional-dependencies]
dev = [
"ruff",
"black",
"mypy",
"isort",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
ignore = []
[tool.black]
target-version = ["py310"]
[tool.mypy]
python_version = "3.10"