aboutsummaryrefslogtreecommitdiff
path: root/doc/conf.py
blob: 0424dc7b36db4b7a6fe5bad19f5463fdd7879e04 (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
from datetime import datetime

import alabaster


html_theme_path = [alabaster.get_path()]
extensions = ['alabaster']
html_theme = 'alabaster'

html_theme_options = {
    'description': "Rumba: A framework to bootstrap a " +
    "recursive internet network on a testbed."
}

html_sidebars = {
    '**': [
        'about.html',
        'navigation.html',
        'searchbox.html'
    ]
}

project = 'Rumba'
year = datetime.now().year
copyright = '{} imec, Nextworks S.r.l.'.format(year)
author = 'Sander Vrijders, Marco Capitani, Dimitri Staessens, Vincenzo Maffione'
master_doc = 'index'
source_suffix = '.rst'
default_role = 'obj'
language = None

extensions.extend(['sphinx.ext.autodoc'])
autodoc_default_flags = ['members', 'special-members']

_locals = {}
with open('../rumba/_version.py') as fp:
    exec(fp.read(), None, _locals)
version = _locals['__version__']

version = version
release = version