forked from cimm-kzn/CIMM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconf.py
More file actions
65 lines (51 loc) · 1.42 KB
/
conf.py
File metadata and controls
65 lines (51 loc) · 1.42 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
from os.path import abspath
from sys import path
path.insert(0, abspath('.'))
from pybtex.plugin import register_plugin
from gost import GOSTStyle
project = 'CIMM'
copyright = '2022, Kazan Chemoinformatics and Molecular Modeling Lab'
author = 'Ramil Nugmanov'
release = '2020.01.17'
extensions = ['recommonmark', 'sphinx_rtd_theme', 'sphinxcontrib.bibtex', 'sphinxcontrib.images']
templates_path = ['_templates']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
source_suffix = {
'.rst': 'restructuredtext',
'.txt': 'restructuredtext',
'.md': 'markdown',
}
html_theme = 'sphinx_rtd_theme'
html_static_path = ['_static']
html_logo = 'imgs/logo.jpg'
html_favicon = 'imgs/favicon.ico'
html_show_copyright = True
html_show_sphinx = False
html_show_sourcelink = False
html_scaled_image_link = False
html_css_files = [
'style.css',
]
html_sidebars = {
'**': [
'globaltoc.html'
]
}
html_theme_options = {
'canonical_url': '',
'logo_only': False,
'display_version': True,
'prev_next_buttons_location': None,
'style_external_links': True,
'style_nav_header_background': 'white',
'collapse_navigation': False,
'sticky_navigation': True,
'navigation_depth': 4,
'includehidden': True,
'titles_only': False,
'analytics_id': 'UA-72457412-1'
}
register_plugin('pybtex.style.formatting', 'gost_style', GOSTStyle)
images_config = {
'override_image_directive': True
}