# Configuration file for the Sphinx documentation builder. import sys sys.path.append('../../..//doc') from baseconf import * name = 'cppinternals' project = 'Cpplib Internals' copyright = '2000-2022 Free Software Foundation, Inc.' authors = 'Neil Booth' # Grouping the document tree into Texinfo files. List of tuples # (source start file, target name, title, author, # dir menu entry, description, category) latex_documents = [ ('index', f'{name}.tex', project, authors, 'manual'), ] texinfo_documents = [ ('index', name, project, authors, None, None, None, True) ] set_common(name, globals())