conf.py 799 B

12345678910111213141516171819202122
  1. # -*- coding: utf-8 -*-
  2. #
  3. # QEMU documentation build configuration file for the 'interop' manual.
  4. #
  5. # This includes the top level conf file and then makes any necessary tweaks.
  6. import sys
  7. import os
  8. qemu_docdir = os.path.abspath("..")
  9. parent_config = os.path.join(qemu_docdir, "conf.py")
  10. exec(compile(open(parent_config, "rb").read(), parent_config, 'exec'))
  11. # This slightly misuses the 'description', but is the best way to get
  12. # the manual title to appear in the sidebar.
  13. html_theme_options['description'] = u'System Emulation Management and Interoperability Guide'
  14. # One entry per manual page. List of tuples
  15. # (source start file, name, description, authors, manual section).
  16. man_pages = [
  17. ('qemu-ga', 'qemu-ga', u'QEMU Guest Agent',
  18. ['Michael Roth <mdroth@linux.vnet.ibm.com>'], 8)
  19. ]