Total Complexity | 0 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 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 |