-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconf.py
42 lines (34 loc) · 1005 Bytes
/
conf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# General information about the project.
import sys
import os
sys.path.insert(0, os.path.dirname(__file__))
from misc.cyverse_sphinx_conf import * # noqa
project = 'GenoPhenoEnvo'
copyright = '2020, University of Arizona'
author = 'TL Swetnam'
version = '0.0.1'
release = '0.0.1'
epub_title = project
epub_author = author
epub_publisher = author
epub_copyright = copyright
# html theme configuration -- see https://sphinx-rtd-theme.readthedocs.io/en/stable/configuring.html
html_theme_options = {
'display_version': False,
# Table of Content options
'collapse_navigation': True,
'sticky_navigation': True,
'navigation_depth': 4,
'includehidden': True,
'titles_only': False
}
html_context = {
"display_github": True, # Add 'Edit on Github' link instead of 'View page source'
"last_updated": True,
"commit": False,
}
# These folders are copied to the documentation's HTML output
html_static_path = ['static']