Completed
Push — master ( 1ca6aa...0b5a77 )
by Simon
02:40
created

conf   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 14
dl 0
loc 19
rs 10
c 0
b 0
f 0
1
# -*- coding: utf-8 -*-
2
#
3
4
import sys
5
import os
6
7
sys.path.insert(0, os.path.abspath("../Hyperactive/"))
8
9
extensions = ["sphinx.ext.autodoc", "sphinx_rtd_theme"]
10
source_suffix = ".rst"
11
master_doc = "index"
12
project = u"Hyperactive"
13
copyright = u"Simon Blanke, [email protected]"
14
exclude_patterns = ["_build"]
15
pygments_style = "sphinx"
16
html_theme = "default"
17
autoclass_content = "both"
18
html_theme = "sphinx_rtd_theme"
19