conf.py 645 B

12345678910111213141516171819
  1. # -*- coding: utf-8; mode: python -*-
  2. """Configuration for the Searx user handbook
  3. """
  4. project = 'Searx User-HB'
  5. version = release = VERSION_STRING
  6. # Grouping the document tree into LaTeX files. List of tuples
  7. # (source start file, target name, title,
  8. # author, documentclass [howto, manual, or own class]).
  9. latex_documents = [
  10. ('index' # startdocname
  11. , 'searx-user-hb.tex' # targetname
  12. , '' # take title from .rst
  13. , author # author
  14. , 'howto' # documentclass
  15. , False # toctree_only
  16. ),
  17. ]