-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathconf.py
39 lines (28 loc) · 892 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
38
39
# -*- coding: utf-8 -*-
import sys, re
from pathlib import Path
sys.path.insert(0, str(Path.cwd().resolve().parent))
# -- Project information -----------------------------------------------------
project = 'PyFPGA'
copyright = '2016-2024, PyFPGA Project'
author = 'PyFPGA contributors'
# -- General configuration ---------------------------------------------------
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.extlinks',
'sphinx.ext.intersphinx',
'sphinx.ext.todo',
'sphinx.ext.viewcode',
]
autodoc_default_options = {
"members": True,
'undoc-members': True,
'inherited-members': True,
}
extlinks = {
'repositoy': ('https://github.com/PyFPGA/pyfpga/tree/main/%s', None)
}
exclude_patterns = ['build']
# -- Options for HTML output -------------------------------------------------
html_theme = 'sphinx_rtd_theme'
html_static_path = ['images']