File tree Expand file tree Collapse file tree 2 files changed +38
-0
lines changed
Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 1+ # Read the Docs configuration file
2+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3+
4+ # Required
5+ version : 2
6+
7+ # Set the OS, Python version, and other tools you might need
8+ build :
9+ os : ubuntu-24.04
10+ tools :
11+ python : " 3.13"
12+
13+ sphinx :
14+ configuration : conf.py
Original file line number Diff line number Diff line change 1+ import os
2+ import sys
3+
4+ # conf.py for Read the Docs
5+
6+ sys .path .insert (0 , os .path .abspath ('.' ))
7+
8+ # Project information
9+ project = 'Standard Query Language (SQLY)'
10+ author = 'Antony Bailey'
11+ release = '0.1.0'
12+
13+ # General configuration
14+ extensions = [
15+ 'sphinx.ext.autodoc' ,
16+ 'sphinx.ext.napoleon' ,
17+ 'sphinx.ext.viewcode' ,
18+ ]
19+
20+ exclude_patterns = []
21+
22+ # Options for HTML output
23+ html_theme = 'alabaster'
24+ html_static_path = ['_static' ]
You can’t perform that action at this time.
0 commit comments