Skip to content

Commit

Permalink
do sys path hack (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
bagel897 authored Jan 11, 2024
1 parent 0bb3685 commit 68410ed
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,14 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
#
import sys
from pathlib import Path

sys.path.insert(0, str(Path("../src").resolve()))
# -- Project information -----------------------------------------------------
from pytoolconfig._version import version

from pytoolconfig._version import version # noqa: E402

project = "pytoolconfig"
copyright = "2023, bagel897" # noqa: A001
Expand Down

0 comments on commit 68410ed

Please sign in to comment.