Files
matrix-ai-agent/confluence-collab/pyproject.toml
Christian Gick b492abe0c9 fix: Copy confluence-collab package instead of symlink for Docker build
Symlinks dont resolve on remote VM during Docker build context.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-24 11:38:39 +02:00

25 lines
524 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "confluence-collab"
version = "0.1.0"
description = "Section-based Confluence page editing with conflict retry"
requires-python = ">=3.11"
dependencies = [
"httpx>=0.27",
"beautifulsoup4>=4.12",
"lxml>=5.0",
"mcp>=1.0",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-asyncio", "respx"]
[project.scripts]
confluence-collab = "confluence_collab.cli:main"
[tool.pytest.ini_options]
asyncio_mode = "auto"