Skip to content

Commit

Permalink
add path to sphinx configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
cleder committed Oct 29, 2023
1 parent cb74c7c commit 96c37da
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 @@ -3,14 +3,20 @@
#
# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
import sys
from pathlib import Path

sys.path.insert(0, str(Path(__file__).resolve().parent))

# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

from pygeoif import about # noqa: E402

project = "pygeoif"
copyright = "2023, Christian Ledermann" # noqa: A001
author = "Christian Ledermann"
release = "1.2"
release = about.__version__

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down

0 comments on commit 96c37da

Please sign in to comment.