mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-10-31 17:45:58 +01:00
Add .readthedocs.yaml
This commit is contained in:
parent
c916cec042
commit
556496dc87
3 changed files with 34 additions and 0 deletions
30
.readthedocs.yaml
Normal file
30
.readthedocs.yaml
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
# .readthedocs.yaml
|
||||||
|
# Read the Docs configuration file
|
||||||
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
||||||
|
|
||||||
|
# Required
|
||||||
|
version: 2
|
||||||
|
|
||||||
|
# Set the version of Python and other tools you might need
|
||||||
|
build:
|
||||||
|
os: ubuntu-20.04
|
||||||
|
tools:
|
||||||
|
python: "3.9"
|
||||||
|
# You can also specify other tool versions:
|
||||||
|
nodejs: "16"
|
||||||
|
# rust: "1.55"
|
||||||
|
# golang: "1.17"
|
||||||
|
|
||||||
|
# Build documentation in the docs/ directory with Sphinx
|
||||||
|
sphinx:
|
||||||
|
configuration: docs/source/conf.py
|
||||||
|
|
||||||
|
# If using Sphinx, optionally build your docs in additional formats such as PDF
|
||||||
|
formats:
|
||||||
|
- pdf
|
||||||
|
- epub
|
||||||
|
|
||||||
|
# Optionally declare the Python requirements required to build your docs
|
||||||
|
python:
|
||||||
|
install:
|
||||||
|
- requirements: docs/requirements.txt
|
2
docs/requirements.txt
Normal file
2
docs/requirements.txt
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
myst-parser>=0.17
|
||||||
|
sphinxcontrib-mermaid>=0.7.1
|
|
@ -7,6 +7,8 @@ project = 'PGPainless'
|
||||||
copyright = '2022, Paul Schaub'
|
copyright = '2022, Paul Schaub'
|
||||||
author = 'Paul Schaub'
|
author = 'Paul Schaub'
|
||||||
|
|
||||||
|
master_doc = 'index'
|
||||||
|
|
||||||
# https://protips.readthedocs.io/git-tag-version.html
|
# https://protips.readthedocs.io/git-tag-version.html
|
||||||
latest_tag = os.popen('git describe --abbrev=0').read().strip()
|
latest_tag = os.popen('git describe --abbrev=0').read().strip()
|
||||||
release = latest_tag
|
release = latest_tag
|
||||||
|
|
Loading…
Reference in a new issue