Build with a Git submodule

Read the Docs common development files
======================================

Common shared bits for development and release tooling across multiple
repositories.

Installing
----------

To install::
>>> import os
>>> os.system("head ../submodule/README.rst")
0

Sphinx configuration file used to build this docs (see full file),

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
# -*- coding: utf-8 -*-

# Default settings
project = 'Test Builds'
extensions = [
    'sphinx_autorun',
]

latex_engine = 'xelatex'  # allow us to build Unicode chars


# Include all your settings here
html_theme = 'sphinx_rtd_theme'





>>> # Build at
>>> import datetime
>>> datetime.datetime.utcnow()  # UTC
datetime.datetime(2022, 6, 20, 9, 18, 22, 922490)