diff --git a/docs/conf.py b/docs/conf.py index 1173cd895b7bc3852dfcbf43bf749984cc8ffde0..e362d70adf6657b1b32e70074381b31b843196f9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,4 +1,3 @@ -import sphinx_rtd_theme # Configuration file for the Sphinx documentation builder. # # This file only contains a selection of the most common options. For a full @@ -18,12 +17,14 @@ import sphinx_rtd_theme # -- Project information ----------------------------------------------------- -project = 'NPdet' +project = 'Solid Framework' copyright = '2020, Whitney Armstrong' author = 'Whitney Armstrong' +master_doc = 'index' + # The full version, including alpha/beta/rc tags -release = '0.9' +release = '0.1' # -- General configuration --------------------------------------------------- @@ -31,33 +32,7 @@ release = '0.9' # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. -extensions = [ 'recommonmark','sphinx_rtd_theme', 'breathe', 'exhale' ] -# Setup the breathe extension -breathe_projects = { - "My Project": "./doxyoutput/xml" -} -breathe_default_project = "My Project" - -# Setup the exhale extension -exhale_args = { - # These arguments are required - "containmentFolder": "./api", - "rootFileName": "library_root.rst", - "rootFileTitle": "Library API", - "doxygenStripFromPath": "..", - # Suggested optional arguments - "createTreeView": True, - # TIP: if using the sphinx-bootstrap-theme, you need - # "treeViewIsBootstrap": True, - "exhaleExecutesDoxygen": True, - "exhaleDoxygenStdin": "INPUT = ../src/GenericDetectors/beamline/src" -} - -# Tell sphinx what the primary language being documented is. -primary_domain = 'cpp' - -# Tell sphinx what the pygments highlight language should be. -highlight_language = 'cpp' +extensions = ['recommonmark'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] @@ -73,24 +48,7 @@ exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -html_theme = 'sphinx_rtd_theme' -html_theme_options = { - 'canonical_url': '', - 'analytics_id': 'UA-XXXXXXX-1', # Provided by Google in your dashboard - 'logo_only': False, - 'display_version': True, - 'prev_next_buttons_location': 'bottom', - 'style_external_links': False, - #'vcs_pageview_mode': '', - 'style_nav_header_background': 'white', - # Toc options - 'collapse_navigation': True, - 'sticky_navigation': True, - 'navigation_depth': 4, - 'includehidden': True, - 'titles_only': False -} - +html_theme = 'alabaster' # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files,