.readthedocs.yaml 560 B

12345678910111213141516171819202122232425262728
  1. # .readthedocs.yaml
  2. # Read the Docs configuration file
  3. # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
  4. # Required
  5. version: 2
  6. # Set the OS, Python version and other tools you might need
  7. build:
  8. os: ubuntu-22.04
  9. tools:
  10. python: "3.11"
  11. # You can also specify other tool versions:
  12. # nodejs: "19"
  13. # rust: "1.64"
  14. # golang: "1.19"
  15. # Build documentation in the "docs/" directory with Sphinx
  16. sphinx:
  17. configuration: docs/conf.py
  18. python:
  19. install:
  20. - requirements: docs/requirements.txt
  21. formats:
  22. - pdf
  23. - epub