File: conf.py

package info (click to toggle)
pyraf 2.2.2-4~deb13u1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,664 kB
  • sloc: python: 24,944; ansic: 372; lisp: 76; makefile: 8
file content (32 lines) | stat: -rw-r--r-- 651 bytes parent folder | download | duplicates (3)
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
import os
import sys

project = 'PyRAF'
release = '2.2'
version = '.'.join(release.split('.')[:2])

master_doc = 'index'
extensions = [
    'sphinx.ext.intersphinx',
    'sphinx.ext.autosectionlabel',
    'sphinx.ext.extlinks',
]

intersphinx_mapping = {
    "python": ("https://docs.python.org/3/", None),
}

html_theme = "bootstrap-astropy"
html_theme_options = {
    'logotext1': 'IRAF',
    'logotext2': 'PyRAF',
    'logotext3': ':docs',
    'astropy_project_menubar': False
}
html_static_path = ['_static']

# These paths are either relative to html_static_path
# or fully qualified paths (eg. https://...)
html_css_files = [
    'brand.css',
]