-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconf.py
More file actions
48 lines (30 loc) · 885 Bytes
/
Copy pathconf.py
File metadata and controls
48 lines (30 loc) · 885 Bytes
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
import os
import sys
docs_path = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, os.path.dirname(docs_path))
project = 'python-alsa-midi'
copyright = '2021, Jacek Konieczny'
author = 'Jacek Konieczny'
version = ''
release = ''
needs_sphinx = '7.0'
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.intersphinx',
'sphinx.ext.viewcode',
'sphinxcontrib.doxylink',
]
templates_path = ['_templates']
source_suffix = '.rst'
master_doc = 'index'
language = 'en'
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
pygments_style = None
autodoc_typehints = "description"
python_use_unqualified_type_names = True
html_theme = 'sphinx_rtd_theme'
html_static_path = ['_static']
intersphinx_mapping = {'python': ('https://docs.python.org/3/', None)}
doxylink = {
'alsa': ('alsa.tag', 'https://www.alsa-project.org/alsa-doc/alsa-lib/'),
}