16 lines
369 B
TOML
16 lines
369 B
TOML
[project]
|
|
name = "iftypeset"
|
|
version = "0.1.0"
|
|
description = "Publication-quality typesetting runtime (Markdown→HTML→PDF) with Chicago/Bringhurst-backed rule registry pointers."
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"pyyaml>=6.0",
|
|
"jsonschema>=4.19",
|
|
]
|
|
|
|
[project.scripts]
|
|
iftypeset = "iftypeset.cli:main"
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
|