forked from fipl-hse/2023-2-level-ctlr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.py
47 lines (37 loc) · 1.27 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
"""
Configuration file for the Sphinx documentation builder.
For the full list of built-in configuration values, see the documentation:
https://www.sphinx-doc.org/en/master/usage/configuration.html
"""
# pylint: disable=invalid-name,redefined-builtin
import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).parent.resolve()))
project = 'Лабораторный Практикум и Курс Лекций'
copyright = '2023, Демидовский А.В. и другие'
author = 'Демидовский А.В. и другие'
extensions = [
'sphinx_design',
'sphinx.ext.autodoc',
'sphinx.ext.autosummary',
'sphinx.ext.napoleon',
'sphinx.ext.intersphinx'
]
intersphinx_mapping = {
'python': ('https://docs.python.org/3', None),
'requests': ('https://requests.readthedocs.io/en/latest/', None),
'bs4': ('https://www.crummy.com/software/BeautifulSoup/bs4/doc/', None),
'networkx': ('https://networkx.org/documentation/stable', None)
}
nitpick_ignore = [
('py:class', 'spacy.tokens.token.Token'),
('py:class', 'spacy.tokens.Token'),
('py:class', 'stanza.models.common.doc.Document'),
('py:class', 'DiGraph'),
]
exclude_patterns = [
'venv/*',
'docs/private/*'
]
language = 'en'
html_theme = 'sphinx_rtd_theme'