.readthedocs.yml 596 B

12345678910111213141516171819202122232425
  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: docs/conf.py
  9. # Build documentation with MkDocs
  10. #mkdocs:
  11. # configuration: mkdocs.yml
  12. # Optionally build your docs in additional formats such as PDF and ePub
  13. formats: all
  14. # Optionally set the version of Python and requirements required to build your docs
  15. python:
  16. version: 3.7
  17. install:
  18. - requirements: requirements.txt
  19. - method: pip
  20. path: .