diff options
author | 2024-08-09 15:32:58 +0100 | |
---|---|---|
committer | 2024-08-09 15:32:58 +0100 | |
commit | 9e52607eab216ac896005338915e2c98fde337c0 (patch) | |
tree | acc4170d752883970e34d7d18b271d06852b0e03 /pyproject.toml | |
parent | Remove old documentation (diff) |
Add mkdocs packages
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml index 6c0c4b9..2005306 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,9 +23,16 @@ dnspython = "2.6.1" octodns = "^1.8.0" octodns-cloudflare = "^0.0.6" + +[tool.poetry.group.docs.dependencies] +mkdocs-material = {extras = ["imaging"], version = "^9.5.31"} +mkdocs-glightbox = "^0.4.0" + [tool.taskipy.tasks] lint = "pre-commit run --all-files" precommit = "pre-commit install" +serve-docs = "cd docs && mkdocs serve" +build-docs = "cd docs && mkdocs build" [tool.ruff] target-version = "py311" |