.readthedocs.yml 562 B

123456789101112131415161718192021222324
  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 documentation in the docs/ directory with Sphinx
  7. sphinx:
  8. configuration: _source/conf.py
  9. # Build documentation with MkDocs
  10. #mkdocs:
  11. # configuration: mkdocs.yml
  12. # Optionally build your docs in additional formats such as PDF
  13. formats:
  14. - pdf
  15. # Optionally set the version of Python and requirements required to build your docs
  16. python:
  17. version: 3.8
  18. install:
  19. - requirements: requirements.txt