forked from pybliometrics-dev/pybliometrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.py
116 lines (94 loc) · 2.62 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#!/usr/bin/env python3
import sys
import os
sys.path.append(os.path.join(os.path.abspath(os.pardir)))
autodoc_mock_imports = ["_tkinter"]
cwd = os.getcwd()
project_root = os.path.dirname(cwd)
sys.path.insert(0, os.path.abspath('source'))
sys.path.insert(0, project_root)
import pybliometrics
# General configuration
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.autosummary',
'sphinx.ext.coverage',
'sphinx.ext.doctest',
'sphinx.ext.mathjax',
'sphinx.ext.napoleon',
'sphinx.ext.viewcode',
'sphinx_autodoc_typehints',
'sphinx_autodoc_defaultargs']
source_suffix = '.rst'
master_doc = 'index'
project = 'pybliometrics'
author = 'Michael E. Rose and John Kitchin'
copyright = '2017-2023 ' + author
version = pybliometrics.__version__
release = pybliometrics.__version__
language = 'en'
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
pygments_style = 'sphinx'
todo_include_todos = False
# Options for HTML output
html_theme = 'alabaster'
html_theme_options = {
'github_user': 'pybliometrics-dev',
'github_repo': 'pybliometrics',
'github_banner': 'true',
'github_button': 'true',
'github_type': 'star',
}
html_sidebars = {
'**': [
'about.html',
'navigation.html',
'searchbox.html',
]
}
html_static_path = ['_static']
html_css_files = ['custom.css']
# Options for HTMLHelp output
html_show_sourcelink = True
htmlhelp_basename = 'pybliometricsdoc'
autoclass_content = 'both'
# Option to group members of classes
autodoc_member_order = 'bysource'
# Type hints
autodoc_typehints = "description"
napoleon_use_param = True
typehints_document_rtype = False
rst_prolog = """
.. |default| raw:: html
<div class="default-value-section">""" + \
' <span class="default-value-label">Default:</span>'
# -- Options for LaTeX output ---------------------------------------------
latex_elements = {
# The paper size ('letterpaper' or 'a4paper').
#
# 'papersize': 'letterpaper',
# The font size ('10pt', '11pt' or '12pt').
#
# 'pointsize': '10pt',
# Additional stuff for the LaTeX preamble.
#
# 'preamble': '',
# Latex figure (float) alignment
#
# 'figure_align': 'htbp',
}
latex_documents = [
(master_doc, 'pybliometrics.tex', 'pybliometrics Documentation',
author, 'manual'),
]
# Options for manual page output
man_pages = [
(master_doc, 'pybliometrics', 'pybliometrics Documentation',
[author], 1)
]
# Options for Texinfo output
texinfo_documents = [
(master_doc, 'pybliometrics', 'pybliometrics Documentation',
author, 'pybliometrics', 'One line description of project.',
'Miscellaneous'),
]