2025-08-25 03:33:58 +03:00
|
|
|
# .readthedocs.yaml
|
|
|
|
|
# Read the Docs configuration file
|
2024-04-03 17:57:20 +03:00
|
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
|
|
|
|
2025-08-25 03:33:58 +03:00
|
|
|
# Required
|
2024-04-03 17:54:37 +03:00
|
|
|
version: 2
|
|
|
|
|
|
2025-08-25 03:33:58 +03:00
|
|
|
# Set the version of Python and other tools you might need
|
2024-04-03 17:57:20 +03:00
|
|
|
build:
|
2024-04-03 18:13:03 +03:00
|
|
|
os: ubuntu-22.04
|
2024-04-03 18:10:16 +03:00
|
|
|
tools:
|
2024-04-03 18:13:03 +03:00
|
|
|
python: "3.12"
|
2025-08-25 07:37:30 +03:00
|
|
|
apt_packages:
|
|
|
|
|
- gettext
|
2025-08-25 03:33:58 +03:00
|
|
|
jobs:
|
|
|
|
|
post_install:
|
|
|
|
|
- pip install uv
|
|
|
|
|
- UV_PROJECT_ENVIRONMENT=$READTHEDOCS_VIRTUALENV_PATH uv sync --all-extras --group docs --link-mode=copy
|
2024-04-03 18:10:16 +03:00
|
|
|
|
2025-08-25 03:33:58 +03:00
|
|
|
# Build documentation in the docs/ directory with Sphinx
|
2024-04-03 17:54:37 +03:00
|
|
|
sphinx:
|
2025-08-25 03:33:58 +03:00
|
|
|
configuration: docs/conf.py
|
|
|
|
|
|
|
|
|
|
# Optionally build your docs in additional formats such as PDF and ePub
|
|
|
|
|
formats:
|
|
|
|
|
- pdf
|