blob: 93c3e16d22b9b51f66ccf8ff799dc3d365addef4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import datetime
extensions = ['sphinxcontrib.plantuml']
plantuml = ['java', '-jar', 'plantuml.jar']
source_suffix = '.rst'
master_doc = 'index'
pygments_style = 'sphinx'
html_use_index = False
pdf_documents = [('index', u'Promise', u'Promise Project', u'OPNFV')]
plantuml_latex_output_format = 'eps'
pdf_fit_mode = "shrink"
pdf_stylesheets = ['sphinx','kerning','a4']
latex_elements = {'printindex': ''}
latex_appendices = ['07-schemas']
project = u'Promise: Resource Management'
copyright = u'%s, OPNFV' % datetime.date.today().year
version = u'0.0.1'
release = u'0.0.1'
|