=== pyproject.toml build system ===
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "slash-command-manager"
version = "1.0.0"
description = "Slash Command Generator and MCP Server for SDD Workflow"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
[tool.hatch.build.targets.wheel]
packages = ["slash_commands", "mcp_server"]

[tool.hatch.build.targets.wheel.force-include]
"server.py" = "server.py"
"__version__.py" = "__version__.py"
"prompts/" = "prompts/"

[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
