2020-08-05 01:34:27 +02:00
|
|
|
"""Configure sphinx."""
|
|
|
|
|
|
|
|
import urban_meal_delivery as umd
|
|
|
|
|
|
|
|
|
|
|
|
project = umd.__pkg_name__
|
|
|
|
author = umd.__author__
|
2021-01-09 17:47:45 +01:00
|
|
|
copyright = f'2020, {author}'
|
2020-08-05 01:34:27 +02:00
|
|
|
version = release = umd.__version__
|
|
|
|
|
|
|
|
extensions = [
|
|
|
|
'sphinx.ext.autodoc',
|
|
|
|
'sphinx.ext.napoleon',
|
|
|
|
'sphinx_autodoc_typehints',
|
|
|
|
]
|