File: conf.py

package info (click to toggle)
python-truststore 0.10.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 236 kB
  • sloc: python: 1,837; makefile: 13; sh: 6
file content (29 lines) | stat: -rw-r--r-- 621 bytes parent folder | download | duplicates (2)
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
import datetime

import truststore

project = "Truststore"
author = "Seth Michael Larson, David Glick"
copyright = f"{datetime.date.today().year}"
release = version = truststore.__version__

extensions = [
    "myst_parser",
    "sphinx.ext.intersphinx",
]

html_theme = "furo"
html_context = {
    "display_github": True,
    "github_user": "sethmlarson",
    "github_repo": "truststore",
    "github_version": "main",
    "conf_py_path": "/docs/source/",
}

intersphinx_mapping = {
    "python": ("https://docs.python.org/3", None),
    "urllib3": ("https://urllib3.readthedocs.io/en/stable", None),
}

nitpicky = True