Files
markitect-filter/pyproject.toml
2026-05-14 22:46:51 +02:00

31 lines
699 B
TOML

[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[project]
name = "markitect-filter"
version = "0.1.0"
description = "Source-format adapters for Markitect normalized Markdown"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
dependencies = [
"markitect-tool @ file:///home/worsch/markitect-tool",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
]
epub3 = []
[project.entry-points."markitect_tool.source_adapters"]
epub3 = "markitect_filter.adapters:epub3_adapter_descriptor"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src", "../markitect-tool/src"]