[project]
name = "domin8"
version = "0.2.0"
description = "MCP server that provides AI co-developing agents highly-structured, deterministic pipelines for completing potentially destructive tasks such as creating, editing, deleting, renaming, or moving files that captures the agent's intent prior to execution and provides a comprehensive auditability trail to address undesirable agent behavior while generating or capturing and preserving valuable data that could otherwise not be generated or captured."
readme = "README.md"
requires-python = "==3.12.*"
authors = [
{ name = "domin8 contributors" }
]
license = { text = "MIT" }
keywords = ["mcp", "ai", "governance", "auditable", "deterministic"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"coverage>=7.13.1",
"mcp>=1.25.0",
"pydantic>=2.12.5",
"pydantic-settings>=2.12.0",
"pytest-cov>=7.0.0",
"uuid7>=0.1.0",
"unidiff>=0.7.0,<0.8.0",
"hypothesis>=6.150.2",
"esprima>=4.0.1",
"tree-sitter>=0.25.2",
"tree-sitter-languages>=1.10.2",
"torch>=2.9.1",
]
[project.urls]
Homepage = "https://github.com/yourusername/domin8"
Repository = "https://github.com/yourusername/domin8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"ruff>=0.1.0",
]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
]
ignore = [
"E501", # line too long (handled by formatter)
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"