]> git.ipfire.org Git - thirdparty/gcc.git/blame - libquadmath/doc/conf.py
sphinx: add missing newline for conf.py files.
[thirdparty/gcc.git] / libquadmath / doc / conf.py
CommitLineData
c63539ff
ML
1# Configuration file for the Sphinx documentation builder.
2
3import sys
4sys.path.append('../..//doc')
5
6from baseconf import *
7
8name = 'libquadmath'
9project = 'The GCC Quad-Precision Math Library'
10copyright = '2010-2022 Free Software Foundation, Inc.'
11authors = '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)
16latex_documents = [
17 ('index', f'{name}.tex', project, authors, 'manual'),
18]
19
20texinfo_documents = [
21 ('index', name, project, authors, None, None, None, True)
22]
23
bd044dae 24set_common(name, globals())