.readthedocs.yml 658 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 documentation in the docs/ directory with Sphinx
  7. sphinx:
  8. fail_on_warning: false
  9. builder: html
  10. configuration: _source/conf.py
  11. # Build documentation with MkDocs
  12. #mkdocs:
  13. # configuration: mkdocs.yml
  14. build:
  15. image: latest
  16. # Optionally build your docs in additional formats such as PDF
  17. formats:
  18. - pdf
  19. # Optionally set the version of Python and requirements required to build your docs
  20. python:
  21. version: 3.8
  22. install:
  23. - requirements: requirements.txt
  24. - method: pip
  25. path: .