File: conf.py

package info (click to toggle)
beanquery 0.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 648 kB
  • sloc: python: 8,412; makefile: 3; sh: 2
file content (27 lines) | stat: -rw-r--r-- 788 bytes parent folder | download
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
project = 'beanquery'
copyright = '2014-2022, beanquery Contributors'
author = 'beanquery Contributors'
version = '0.1'
language = 'en'
html_theme = 'furo'
html_title = f'{project} {version}'
html_logo = 'logo.svg'
extensions = [
    'sphinx.ext.autodoc',
    'sphinx.ext.napoleon',
    'sphinx.ext.intersphinx',
    'sphinx.ext.extlinks',
    'sphinx.ext.githubpages',
]
extlinks = {
    'issue': ('https://github.com/beancount/beanquery/issues/%s', '#'),
    'pull': ('https://github.com/beancount/beanquery/pull/%s', '#'),
}
intersphinx_mapping = {
    'python': ('https://docs.python.org/3', None),
    'beancount': ('https://beancount.github.io/docs/', None),
}
napoleon_google_docstring = True
napoleon_use_param = False
autodoc_typehints = 'none'
autodoc_member_order = 'bysource'