37 lines
768 B
Python
37 lines
768 B
Python
import sphinx_rtd_theme
|
|
|
|
extensions = [
|
|
'sphinx_rtd_theme'
|
|
]
|
|
|
|
# -- Project information -----------------------------------------------------
|
|
|
|
project = 'HackRF'
|
|
copyright = '2021, Great Scott Gadgets'
|
|
author = 'Great Scott Gadgets'
|
|
|
|
version = ''
|
|
release = ''
|
|
|
|
|
|
# -- General configuration ---------------------------------------------------
|
|
|
|
extensions = [
|
|
'sphinx.ext.autodoc'
|
|
]
|
|
|
|
templates_path = ['_templates']
|
|
exclude_patterns = ['_build']
|
|
source_suffix = '.rst'
|
|
master_doc = 'index'
|
|
language = None
|
|
exclude_patterns = []
|
|
pygments_style = None
|
|
|
|
|
|
# -- Options for HTML output -------------------------------------------------
|
|
# run pip install sphinx_rtd_theme if you get sphinx_rtd_theme errors
|
|
html_theme = "sphinx_rtd_theme"
|
|
html_css_files = ['status.css']
|
|
|