update link to upper-constraints.txt
[dcaegen2.git] / docs / conf.py
1 project = "onap"
2 release = "master"
3 version = "master"
4 branch = 'latest'
5 master_doc = 'index'
6
7 author = "Open Network Automation Platform"
8 # yamllint disable-line rule:line-length
9 copyright = "ONAP. Licensed under Creative Commons Attribution 4.0 International License. http://creativecommons.org/licenses/by/4.0."
10
11 linkcheck_ignore = [
12     r'http://localhost:\d+/',
13     r'http:/',
14     r'https://localhost:\d+/',
15     r'https:/',
16     r'jdbc:'
17 ]
18
19 exclude_patterns = [
20     r'.tox/**.rst'
21 ]
22
23 extensions = [
24     'sphinx.ext.intersphinx',
25     'sphinx.ext.graphviz',
26     'sphinxcontrib.blockdiag',
27     'sphinxcontrib.seqdiag',
28     'sphinxcontrib.swaggerdoc',
29     'sphinxcontrib.plantuml'
30 ]
31
32 pygments_style = "sphinx"
33 html_theme = "sphinx_rtd_theme"
34 html_theme_options = {
35   "style_nav_header_background": "white",
36   "sticky_navigation": "False" }
37 html_logo = "_static/logo_onap_2017.png"
38 html_favicon = "_static/favicon.ico"
39 html_static_path = ["_static"]
40 html_show_sphinx = False
41
42 intersphinx_mapping = {}
43
44 html_last_updated_fmt = '%d-%b-%y %H:%M'
45
46 def setup(app):
47     app.add_css_file("css/ribbon.css")