You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

.readthedocs.yml 687 B

12345678910111213141516171819202122232425262728
  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/source/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.6
  17. install:
  18. - requirements: docs/requirements.txt
  19. # - requirements: requirements.txt
  20. - method: pip
  21. path: .
  22. extra_requirements:
  23. - docs

A Python package for graph kernels, graph edit distances and graph pre-image problem.