Skip to content

Commit 5daec7d

Browse files
Antony BaileyAntony Bailey
authored andcommitted
rtd is hard
1 parent 43d884f commit 5daec7d

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

.readthedocs.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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

conf.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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']

0 commit comments

Comments
 (0)