fix: format all code with black
and from now on should not deviate from that...
This commit is contained in:
parent
49f9a0228b
commit
a6bb538ce9
59 changed files with 2762 additions and 2131 deletions
53
docs/conf.py
53
docs/conf.py
|
@ -8,43 +8,46 @@
|
|||
|
||||
from importlib.metadata import version as get_version
|
||||
|
||||
project = 'WuttJamaican'
|
||||
copyright = '2023-2024, Lance Edgar'
|
||||
author = 'Lance Edgar'
|
||||
release = get_version('WuttJamaican')
|
||||
project = "WuttJamaican"
|
||||
copyright = "2023-2024, Lance Edgar"
|
||||
author = "Lance Edgar"
|
||||
release = get_version("WuttJamaican")
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
||||
|
||||
extensions = [
|
||||
'sphinx.ext.autodoc',
|
||||
'sphinx.ext.intersphinx',
|
||||
'sphinxcontrib.programoutput',
|
||||
'sphinx.ext.viewcode',
|
||||
'sphinx.ext.todo',
|
||||
'enum_tools.autoenum',
|
||||
"sphinx.ext.autodoc",
|
||||
"sphinx.ext.intersphinx",
|
||||
"sphinxcontrib.programoutput",
|
||||
"sphinx.ext.viewcode",
|
||||
"sphinx.ext.todo",
|
||||
"enum_tools.autoenum",
|
||||
]
|
||||
|
||||
templates_path = ['_templates']
|
||||
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
||||
templates_path = ["_templates"]
|
||||
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
|
||||
|
||||
intersphinx_mapping = {
|
||||
'alembic': ('https://alembic.sqlalchemy.org/en/latest/', None),
|
||||
'humanize': ('https://humanize.readthedocs.io/en/stable/', None),
|
||||
'mako': ('https://docs.makotemplates.org/en/latest/', None),
|
||||
'packaging': ('https://packaging.python.org/en/latest/', None),
|
||||
'python': ('https://docs.python.org/3/', None),
|
||||
'python-configuration': ('https://python-configuration.readthedocs.io/en/latest/', None),
|
||||
'rattail': ('https://docs.wuttaproject.org/rattail/', None),
|
||||
'rattail-manual': ('https://docs.wuttaproject.org/rattail-manual/', None),
|
||||
'rich': ('https://rich.readthedocs.io/en/latest/', None),
|
||||
'sqlalchemy': ('http://docs.sqlalchemy.org/en/latest/', None),
|
||||
'wutta-continuum': ('https://docs.wuttaproject.org/wutta-continuum/', None),
|
||||
"alembic": ("https://alembic.sqlalchemy.org/en/latest/", None),
|
||||
"humanize": ("https://humanize.readthedocs.io/en/stable/", None),
|
||||
"mako": ("https://docs.makotemplates.org/en/latest/", None),
|
||||
"packaging": ("https://packaging.python.org/en/latest/", None),
|
||||
"python": ("https://docs.python.org/3/", None),
|
||||
"python-configuration": (
|
||||
"https://python-configuration.readthedocs.io/en/latest/",
|
||||
None,
|
||||
),
|
||||
"rattail": ("https://docs.wuttaproject.org/rattail/", None),
|
||||
"rattail-manual": ("https://docs.wuttaproject.org/rattail-manual/", None),
|
||||
"rich": ("https://rich.readthedocs.io/en/latest/", None),
|
||||
"sqlalchemy": ("http://docs.sqlalchemy.org/en/latest/", None),
|
||||
"wutta-continuum": ("https://docs.wuttaproject.org/wutta-continuum/", None),
|
||||
}
|
||||
|
||||
|
||||
# -- Options for HTML output -------------------------------------------------
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
|
||||
|
||||
html_theme = 'furo'
|
||||
html_static_path = ['_static']
|
||||
html_theme = "furo"
|
||||
html_static_path = ["_static"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue