summaryrefslogtreecommitdiff
path: root/docs/manual/conf.py
blob: b601a0e6cf0cf23392ea208b9eb56fdacbe0cb9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# -*- coding: utf-8 -*-

import time
import re


def get_version():
    patterns = [
            r'^set\(UFO_VERSION_MAJOR "(\d*)"\)',
            r'^set\(UFO_VERSION_MINOR "(\d*)"\)',
            r'^set\(UFO_VERSION_PATCH "(\d*)"\)'
            ]
    version = ["0", "0", "0"]

    with open('../../CMakeLists.txt', 'r') as f:
        lines = f.readlines()
        major_pattern = r'^set\(UFO_VERSION_MAJOR "(\d*)"\)'

        for line in lines:
            for i, pattern in enumerate(patterns):
                m = re.match(pattern, line)

                if m:
                    version[i] = m.group(1)

    return '.'.join(version)


project = u'UFO'
copyright = u'%s, UFO Development Team a Collaboration of KIT, SCI and TPU' % time.strftime('%Y')
version = get_version()
release = version

extensions = [
    'sphinx.ext.imgmath',
#    'sphinx_tabs.tabs',
]

templates_path = ['_templates']

master_doc = 'index'
source_suffix = '.rst'
source_encoding = 'utf-8'

primary_domain = 'c'

add_function_parentheses = True
pygments_style = 'sphinx'

import sphinx_rtd_theme

html_theme = 'sphinx_rtd_theme'
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
html_logo = "_static/ufo-logo.png"
html_static_path = ['_static']
html_use_smartypants = True

htmlhelp_basename = 'UFOdoc'

latex_documents = [
  ('index', 'UFO.tex', u'UFO Documentation',
   u'Matthias Vogelgesang', 'manual'),
]