Add Quarkdown render adapter boundary

This commit is contained in:
2026-05-15 14:46:32 +02:00
parent 0063fd8fcc
commit 63258161e6
11 changed files with 1139 additions and 10 deletions

29
pyproject.toml Normal file
View File

@@ -0,0 +1,29 @@
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[project]
name = "markitect-quarkdown"
version = "0.1.0"
description = "Quarkdown render/export adapter for Markitect"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
dependencies = [
"markitect-tool @ file:///home/worsch/markitect-tool",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
]
[project.entry-points."markitect_tool.render_export_adapters"]
quarkdown = "markitect_quarkdown.adapter:quarkdown_adapter_descriptor"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src", "../markitect-tool/src"]