]> git.ipfire.org Git - thirdparty/gcc.git/blob - libitm/doc/conf.py
sphinx: add missing newline for conf.py files.
[thirdparty/gcc.git] / libitm / doc / conf.py
1 # Configuration file for the Sphinx documentation builder.
2
3 import sys
4 sys.path.append('../..//doc')
5
6 from baseconf import *
7
8 name = 'libitm'
9 project = 'The GNU Transactional Memory Library'
10 copyright = '2011-2022 Free Software Foundation, Inc.'
11 authors = 'GCC Developer Community'
12
13 # Grouping the document tree into Texinfo files. List of tuples
14 # (source start file, target name, title, author,
15 # dir menu entry, description, category)
16 latex_documents = [
17 ('index', f'{name}.tex', project, authors, 'manual'),
18 ]
19
20 texinfo_documents = [
21 ('index', name, project, authors, None, None, None, True)
22 ]
23
24 set_common(name, globals())