Diff of /docs/conf.py [000000] .. [f8624c]

Switch to side-by-side view

--- a
+++ b/docs/conf.py
@@ -0,0 +1,15 @@
+"""Sphinx configuration."""
+from datetime import datetime
+
+
+project = "ai_genomics"
+author = "Nesta"
+copyright = f"{datetime.now().year}, {author}"
+extensions = [
+    "sphinx.ext.autodoc",
+    "sphinx.ext.napoleon",
+    # "sphinx_click",
+    "sphinx_rtd_theme",
+]
+autodoc_typehints = "description"
+html_theme = "sphinx_rtd_theme"