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>
This commit is contained in:
Christian Gick
2026-02-24 11:38:39 +02:00
parent 3ea4d5abc8
commit b492abe0c9
10 changed files with 741 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
[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"