diff --git a/docs/conf.py b/docs/conf.py index 62624ad4..4946a4c2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -7,7 +7,6 @@ # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information from datetime import datetime -from importlib.metadata import version from pathlib import Path import yaml @@ -22,14 +21,13 @@ def get_authors(cff_file): cff_path = Path(__file__).parent.resolve() / "../CITATION.cff" - author_list = get_authors(cff_file=cff_path) project = "DeepRVAT" copyright = f"{datetime.now().year}, {author_list}" author = f"{author_list}" -version = version("deeprvat") +version = "0.1.0" release = version # -- General configuration --------------------------------------------------- diff --git a/docs/requirements.txt b/docs/requirements.txt index b21c64d5..04217f4b 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -5,6 +5,3 @@ astroid==2.15.8 sphinx-copybutton==0.5.2 sphinx-rtd-theme==1.3.0 PyYAML==6.0.1 - -# Install the DeepRVAT package --e . \ No newline at end of file