.readthedocs.yml 817 B

12345678910111213141516171819202122232425262728293031
  1. # Read the Docs configuration file for Sphinx projects
  2. # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
  3. # Required
  4. version: 2
  5. # Set the OS, Python version and other tools you might need
  6. build:
  7. os: ubuntu-22.04
  8. tools:
  9. python: "3.11"
  10. # You can also specify other tool versions:
  11. # nodejs: "19"
  12. # rust: "1.64"
  13. # golang: "1.19"
  14. # Build documentation in the "docs/" directory with Sphinx
  15. sphinx:
  16. configuration: docs/conf.py
  17. # Optionally build your docs in additional formats such as PDF and ePub
  18. # formats:
  19. # - pdf
  20. # - epub
  21. # Optional but recommended, declare the Python requirements required
  22. # to build your documentation
  23. # See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
  24. python:
  25. install:
  26. - requirements: docs/requirements.txt