.readthedocs.yml 649 B

12345678910111213141516171819202122232425262728293031
  1. # .readthedocs.yml
  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. build:
  7. os: ubuntu-22.04
  8. tools:
  9. python: "3.9"
  10. submodules:
  11. include: all
  12. recursive: true
  13. # Build documentation in the docs/ directory with Sphinx
  14. sphinx:
  15. configuration: docs/conf.py
  16. # Build documentation with MkDocs
  17. #mkdocs:
  18. # configuration: mkdocs.yml
  19. # Optionally build your docs in additional formats such as PDF and ePub
  20. formats: all
  21. # Optionally set the version of Python and requirements required to build your docs
  22. python:
  23. install:
  24. - requirements: requirements.txt