# Configuration file for the Sphinx documentation builder. # # This file only contains a selection of the most common options. For a full # list see the documentation: # https://www.sphinx-doc.org/en/master/usage/configuration.html # -- Path setup -------------------------------------------------------------- # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # import os import sys import os.path import json import datetime from pprint import pprint as pp from sphinx.builders.html import StandaloneHTMLBuilder # -- Project information ----------------------------------------------------- # TODO # WHAT TO DO ABOUT COPYRIGHTS - this is for all the docs! not the cof.py file itself! # current_year = datetime.datetime.now().year current_day = datetime.datetime.now().strftime("%Y/%m/%d") copyright = '{}, XMOS Ltd'.format(current_year) # maybe make this a range but not sure where to start from author = 'XMOS Ltd' xmos_trademarks = 'XMOS, XCORE, VocalFusion and the XMOS logo' xmos_disclaimer = f'''XMOS Ltd. is the owner or licensee of this design, code, or Information (collectively, the “Information”) and is providing it to you “AS IS” with no warranty of any kind, express or implied and shall have no liability in relation to its use. XMOS Ltd makes no representation that the Information, or any particular implementation thereof, is or will be free from any claims of infringement and again, shall have no liability in relation to any such claims. { xmos_trademarks } are registered trademarks of XMOS Ltd. in the United Kingdom and other countries and may not be used without written permission. Company and product names mentioned in this document are the trademarks or registered trademarks of their respective owners. ''' # ---------------------------------------------- # conf files path conf_files_dir = os.path.dirname(__file__) # Set DEV_MODE from env var DEV_MODE = os.getenv('DEV', False) if DEV_MODE: todo_include_todos = True # Get repo structure from env vars repo = os.path.realpath(os.getenv('REPO', '..')) doc_dir = repo + '/' + os.getenv('DOC_DIR', 'doc') doxy_dir = os.getenv('DOXYGEN_OUTPUT', doc_dir + "/_build/_doxygen") template_dir = os.getenv('TEMPLATE_DIR', doc_dir + "/_templates") # to set project name and version which show up below the XMOS logo title = os.getenv('TITLE', '') project = os.getenv('PROJECT', '') release = os.getenv('VERSION', '') print("Working directory: {}\n".format(os.getcwd())) print("doc_dir: {}\n".format(doc_dir)) print("repo: {}\n".format(repo)) exit()