.readthedocs.yml 491 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:
  7. os: "ubuntu-20.04"
  8. apt_packages:
  9. - python3-six
  10. tools:
  11. python: "3.9"
  12. # Build documentation in the docs/ directory with Sphinx
  13. sphinx:
  14. configuration: doc/conf.py
  15. # Optionally build your docs in additional formats such as PDF and ePub
  16. formats: []
  17. python:
  18. install:
  19. - requirements: doc/sphinx/requirements.txt