- 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
33 lines
481 B
TOML
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"
|