2023-08-18 23:43:20 +00:00
|
|
|
# The `dev-dependencies` section sets up tools for building `jj`
|
|
|
|
# documentation. `poetry` will install these in a virtual environment.
|
|
|
|
# The other sections are unused.
|
|
|
|
[tool.poetry]
|
|
|
|
name = "jj-docs"
|
|
|
|
version = "0"
|
|
|
|
description = ""
|
|
|
|
authors = []
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.8"
|
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2023-11-02 05:45:46 +00:00
|
|
|
# These can be updated with `poetry add`.
|
2023-08-18 23:43:20 +00:00
|
|
|
mkdocs = "^1.5.2"
|
2023-11-02 05:45:46 +00:00
|
|
|
mkdocs-material = "^9.4"
|
2023-11-02 05:26:07 +00:00
|
|
|
# (Py)Markdown extensions
|
|
|
|
mdx-truly-sane-lists = "^1.3"
|
|
|
|
mdx-breakless-lists = "^1.0.1"
|
2023-10-04 01:20:04 +00:00
|
|
|
# Allows setting up redirects when renaming docs files
|
2023-08-18 23:43:20 +00:00
|
|
|
mkdocs-redirects = "^1.2.1"
|
|
|
|
# Versioning of documentation
|
2023-11-03 05:47:47 +00:00
|
|
|
mike = "^2.0.0"
|
2023-08-18 23:43:20 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|