blob: 906f249d4c9a68645464c1ecd23565a1be3851d2 [file] [log] [blame]
Victor Morales47a6f472017-08-09 14:25:50 -05001# -*- coding: utf-8 -*-
2# Licensed under the Apache License, Version 2.0 (the "License");
3# you may not use this file except in compliance with the License.
4# You may obtain a copy of the License at
5#
6# http://www.apache.org/licenses/LICENSE-2.0
7#
8# Unless required by applicable law or agreed to in writing, software
9# distributed under the License is distributed on an "AS IS" BASIS,
10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
11# implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15import os
16import sys
17
18BASE_DIR = os.path.dirname(os.path.abspath(__file__))
19ROOT = os.path.abspath(os.path.join(BASE_DIR, "..", ".."))
20
21sys.path.insert(0, ROOT)
22sys.path.insert(0, BASE_DIR)
23
24# -- General configuration ----------------------------------------------------
25
26# Add any Sphinx extension module names here, as strings. They can be
27# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
28extensions = [
29 'sphinx.ext.autodoc',
30 #'sphinx.ext.intersphinx'
31]
32
33# The suffix of source filenames.
34source_suffix = '.rst'
35
36# The master toctree document.
37master_doc = 'index'
38
39# General information about the project.
40project = u'ONAP on Vagrant'