File: conf.py

package info (click to toggle)
apscheduler 3.11.2-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 872 kB
  • sloc: python: 7,326; makefile: 6
file content (48 lines) | stat: -rw-r--r-- 1,006 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python3
from __future__ import annotations

from importlib.metadata import version as get_version

from packaging.version import parse

extensions = [
    "sphinx.ext.autodoc",
    "sphinx.ext.intersphinx",
    "sphinx_rtd_theme",
]

templates_path = ["_templates"]
source_suffix = ".rst"
master_doc = "index"
project = "APScheduler"
author = "Alex Grönholm"
copyright = "2009, " + author

v = parse(get_version("APScheduler"))
version = v.base_version
release = v.public

language = "en"

exclude_patterns = ["_build"]
pygments_style = "sphinx"
autodoc_default_options = {"members": True, "show-inheritance": True}
autodoc_mock_imports = [
    "bson",
    "gevent",
    "kazoo",
    "pymongo",
    "PyQt6",
    "redis",
    "rethinkdb",
    "sqlalchemy",
    "tornado",
    "twisted",
]
todo_include_todos = False
html_theme = "sphinx_rtd_theme"

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