.readthedocs.yaml 744 B

1234567891011121314151617181920212223242526272829303132
  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. apt_packages:
  16. - graphviz
  17. # Build documentation in the docs/ directory with Sphinx
  18. sphinx:
  19. configuration: docs/src/conf.py
  20. # If using Sphinx, optionally build your docs in additional formats such as
  21. # PDF
  22. formats:
  23. - pdf
  24. # Optionally declare the Python requirements required to build your docs
  25. python:
  26. install:
  27. - requirements: docs/src/requirements.txt