Minor fixes to Promise deliverable
[promise.git] / etc / conf.py
1 import datetime
2 import sys
3 import os
4
5 needs_sphinx = '1.3'
6
7 # plantuml
8 extensions = ['sphinxcontrib.plantuml']
9 plantuml = ['java', '-jar', 'plantuml.jar']
10
11 numfig = True
12
13 source_suffix = '.rst'
14 master_doc = 'index'
15 pygments_style = 'sphinx'
16 html_use_index = False
17
18 pdf_documents = [('index', u'Promise', u'Promise Project', u'OPNFV')]
19 pdf_fit_mode = "shrink"
20 pdf_stylesheets = ['sphinx','kerning','a4']
21 #latex_domain_indices = False
22 #latex_use_modindex = False
23
24 latex_elements = {
25     'printindex': '',
26 }
27
28 project = u'Promise: Resource Management'
29 copyright = u'%s, OPNFV' % datetime.date.today().year
30 version = u'1.0.1'
31 release = u'1.0.1'
32