aboutsummaryrefslogtreecommitdiff
path: root/docs/conf.py
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2024-03-04 13:37:58 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2024-03-04 19:11:30 -0500
commit5911c460a3a4d11dc42ea57e31caa66491f52819 (patch)
tree7271918cd99a987adb8a240cc1ba51dda09b1376 /docs/conf.py
parent9cfb3ccee39c43e9326b26647596ac3b15abc0f7 (diff)
downloadstasis-5911c460a3a4d11dc42ea57e31caa66491f52819.tar.gz
RTD config
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/conf.py b/docs/conf.py
index e6b3cd6..6610bbd 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -16,23 +16,27 @@
import os
import shutil
import subprocess
+import sys
+
+print("current directory: {}".format(os.path.abspath(os.curdir)), file=sys.stderr)
-print("current directory: {}".format(os.path.abspath(os.curdir)))
if os.path.exists("html"):
shutil.rmtree("html")
# Update doxygen config
-subprocess.run("doxygen -u", shell=True)
+#subprocess.run("doxygen -u", shell=True)
# Run doxygen
subprocess.run("doxygen", shell=True)
+
# -- Project information -----------------------------------------------------
project = 'Oh My Cal'
copyright = '2023-2024, Space Telescope Science Institute'
author = 'Joseph Hunkeler'
+root_doc = "nop"
html_extra_path = ["html"]
# -- General configuration ---------------------------------------------------