sphinx2ΒΆ
Use Sphinx2 to build the docs and our own theme.
Requirements file used:
1 2 | sphinx-autorun
git+https://github.com/sphinx-doc/sphinx.git
|
alabaster==0.7.12
Babel==2.8.0
certifi==2020.6.20
chardet==3.0.4
commonmark==0.8.1
docutils==0.16
future==0.18.2
idna==2.10
imagesize==1.2.0
Jinja2==2.11.2
MarkupSafe==1.1.1
mock==1.0.1
packaging==20.4
Pillow==5.4.1
Pygments==2.7.1
pyparsing==2.4.7
pytz==2020.1
readthedocs-sphinx-ext==2.1.1
recommonmark==0.5.0
requests==2.24.0
six==1.15.0
snowballstemmer==2.0.0
Sphinx @ git+https://github.com/sphinx-doc/sphinx.git@0476e1cea93b587e3c0ab295aa20b2b9f0f81a34
sphinx-autorun==1.1.1
sphinx-rtd-theme==0.4.3
sphinxcontrib-applehelp==1.0.2
sphinxcontrib-devhelp==1.0.2
sphinxcontrib-htmlhelp==1.0.3
sphinxcontrib-jsmath==1.0.1
sphinxcontrib-qthelp==1.0.3
sphinxcontrib-serializinghtml==1.1.4
sphinxcontrib-websupport==1.2.4
urllib3==1.25.11
>>> import os
>>> os.system('pip freeze')
0
Sphinx configuration file to build this docs (see full file),
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # -*- coding: utf-8 -*-
# Default settings
project = 'Test Builds'
extensions = [
'sphinx_autorun',
]
# Include all your settings here
html_theme = 'sphinx_rtd_theme'
|
>>> # Build at
>>> import datetime
>>> datetime.datetime.utcnow() # UTC
datetime.datetime(2020, 10, 20, 17, 1, 22, 627944)