File: conf.py

package info (click to toggle)
sphinx-autodoc-typehints 2.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 408 kB
  • sloc: python: 2,357; makefile: 3
file content (11 lines) | stat: -rw-r--r-- 214 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
from __future__ import annotations

import pathlib
import sys

master_doc = "index"
sys.path.insert(0, str(pathlib.Path(__file__).parent))
extensions = [
    "sphinx.ext.autodoc",
    "sphinx_autodoc_typehints",
]