Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
# Configuration file for the Sphinx documentation builder.
import importlib.metadata
import os
import sys

sys.path.insert(0, os.path.abspath("../../src")) # src code dir relative to this file

import importlib

# -- Project information
project = "Easy AzureML"
copyright = "2024, Alejandro barón" # noqa A001
author = "Alejandro Barón"

release = "0.1"
version = importlib.metadata.version("ez_azml")
try:
from ez_azml.__version__ import __version__

version = __version__
except ImportError:
version = "0.1.0"

extensions = [
"sphinx.ext.duration",
Expand Down
Loading