# Add any paths that contain templates here, relative to this directory. templates_path = ['.templates'] # The suffix of source filenames. source_suffix = '.rst' # The master toctree document. master_doc = 'index' # General information about the project. project = u'Zipline' copyright = u'2020, Quantopian Inc.' # The full version, including alpha/beta/rc tags, but excluding the commit hash version = release = version.split('+', 1)[0] # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. exclude_patterns = [] on_rtd = os.environ.get('READTHEDOCS', None) == 'True' if not on_rtd: # only import and set the theme if we're building docs locally try: import sphinx_rtd_theme except ImportError: html_theme = 'default' html_theme_path = [] else: html_theme = 'sphinx_rtd_theme' html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
# Add any paths that contain templates here, relative to this directory. templates_path = [".templates"] # The suffix of source filenames. # source_parsers = {'.md': CommonMarkParser} source_suffix = {".rst": "restructuredtext", ".md": "markdown"} # The master toctree document. master_doc = "index" # General information about the project. project = "Zipline" copyright = "2020, Quantopian Inc." # The full version, including alpha/beta/rc tags, but excluding the commit hash version = release = version.split("+", 1)[0] # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. exclude_patterns = [] on_rtd = os.environ.get("READTHEDOCS", None) == "True" if not on_rtd: # only import and set the theme if we're building docs locally try: import pydata_sphinx_theme except ImportError: html_theme = "default" html_theme_path = [] else: html_theme = "pydata_sphinx_theme" html_theme_path = pydata_sphinx_theme.get_html_theme_path()
# Add any paths that contain templates here, relative to this directory. templates_path = ['.templates'] # The suffix of source filenames. source_suffix = '.rst' # The master toctree document. master_doc = 'index' # General information about the project. project = u'Zipline' copyright = u'2016, Quantopian Inc.' # The full version, including alpha/beta/rc tags, but excluding the commit hash release = version.split('+', 1)[0] # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. exclude_patterns = [] on_rtd = os.environ.get('READTHEDOCS', None) == 'True' if not on_rtd: # only import and set the theme if we're building docs locally try: import sphinx_rtd_theme except ImportError: html_theme = 'default' html_theme_path = [] else: html_theme = 'sphinx_rtd_theme' html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]