mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-03 12:28:49 +08:00
38 lines
805 B
Python
38 lines
805 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import os
|
|
import subprocess
|
|
|
|
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
|
|
|
|
if on_rtd:
|
|
subprocess.check_call('cd ..; doxygen', shell=True)
|
|
|
|
import sphinx_rtd_theme
|
|
|
|
html_theme = "sphinx_rtd_theme"
|
|
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
|
|
|
|
def setup(app):
|
|
app.add_css_file("main_stylesheet.css")
|
|
|
|
extensions = ['breathe']
|
|
breathe_projects = { 'acldocs': '../xml' }
|
|
templates_path = ['_templates']
|
|
html_static_path = ['_static']
|
|
source_suffix = '.rst'
|
|
master_doc = 'index'
|
|
project = 'acldocs'
|
|
copyright = 'Copyright 2023 The Acl Authors.'
|
|
author = 'zsxxsz'
|
|
|
|
#html_logo = 'image/ea_big.png'
|
|
|
|
exclude_patterns = []
|
|
highlight_language = 'c++'
|
|
pygments_style = 'sphinx'
|
|
todo_include_todos = False
|
|
htmlhelp_basename = 'acldocs'
|
|
|