-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathconf.py
37 lines (32 loc) · 944 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
import sphinx_rtd_theme
import os
import sys
sys.path.insert(0, os.path.abspath('..'))
# http://www.sphinx-doc.org/en/master/extensions.html
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.napoleon',
'sphinx.ext.doctest',
'sphinx.ext.intersphinx',
'sphinx.ext.todo',
'sphinx.ext.coverage',
'sphinx.ext.mathjax',
'sphinx.ext.ifconfig',
'sphinx.ext.viewcode',
'sphinx.ext.githubpages']
templates_path = ['templates']
exclude_patterns = ['build']
project = 'CatKit'
source_suffix = ['.rst']
master_doc = 'index'
copyright = '2018, CatKit-developers'
default_role = 'math'
pygments_style = 'sphinx'
mautoclass_content = 'both'
html_theme = 'sphinx_rtd_theme'
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
html_static_path = ['static']
html_last_updated_fmt = '%a, %d %b %Y %H:%M:%S'
version = '0.5'
release = '0.5.0'
intersphinx_mapping = {'python': ('https://docs.python.org/3.6', None)}