.readthedocs.yaml 726 B

1234567891011121314151617181920212223242526272829
  1. # .readthedocs.yaml
  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. # Set the version of Python and other tools you might need
  7. build:
  8. os: ubuntu-20.04
  9. tools:
  10. python: "3.9"
  11. # You can also specify other tool versions:
  12. # nodejs: "16"
  13. # rust: "1.55"
  14. # golang: "1.17"
  15. # Build documentation in the docs/ directory with Sphinx
  16. sphinx:
  17. configuration: docs/source/conf.py
  18. # If using Sphinx, optionally build your docs in additional formats such as PDF
  19. # formats:
  20. # - pdf
  21. # Optionally declare the Python requirements required to build your docs
  22. python:
  23. install:
  24. - requirements: requirements/requirements_dev.txt