-
Notifications
You must be signed in to change notification settings - Fork 387
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.28 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# The `dev-dependencies` section sets up tools for building `jj`
# documentation. `uv` will install these in a virtual environment.
[project]
name = "jj-docs"
description = "Sets up MkDocs and related Python tools"
requires-python = ">=3.9"
version = "0.1.0"
dependencies = []
[tool.uv]
package = false
# These can be updated with `uv add --dev`.
dev-dependencies = [
"mkdocs<1.7,>=1.6",
# Pin mkdocs-material to the exact version b/c it sometimes breaks thing
"mkdocs-material==9.5.39",
# Versioning of documentation
"mike<3,>=2.1.3",
# (Py)Markdown extensions
"mdx-truly-sane-lists<2.0,>=1.3",
"mdx-breakless-lists<2.0.0,>=1.0.1",
# Allows setting up redirects when renaming docs files
"mkdocs-redirects<2.0.0,>=1.2.1",
# Used for the CLI reference
"mkdocs-include-markdown-plugin<7.0.0,>=6.0.4",
"codespell[toml]>=2.4.0",
]
[tool.codespell]
check-filenames=true
check-hidden=true
# Codespell does not respect .gitignore. It may be necessary to add to
# this list by running e.g. `uv run codespell --skip=./rendered-docs`
# if you have less common ignored files or globally ignored files present.
# Alternatively, try `uv run codespell $(jj file list)`.
skip="./target,./.jj,*.lock,./.git,./.venv,./.direnv"
ignore-words-list="crate,NotIn,Wirth,abd"