readthedocs requirements

This commit is contained in:
tobiadefami
2025-02-27 14:17:20 +01:00
parent 40523a59e5
commit 77b05c2540
2 changed files with 23 additions and 0 deletions

20
.readthedocs.yaml Normal file
View File

@@ -0,0 +1,20 @@
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Set the OS, Python version, and other tools you might need
build:
os: ubuntu-24.04
tools:
python: "3.11" # Using a stable Python version
# Build documentation with Mkdocs
mkdocs:
configuration: docs/mkdocs.yml
# Declare the Python requirements required to build your documentation
python:
install:
- requirements: docs/requirements.txt

3
docs/requirements.txt Normal file
View File

@@ -0,0 +1,3 @@
mkdocs>=1.4.0
mkdocs-material>=9.0.0
pymdown-extensions>=9.0