docs: add epilog.rst to define common things.

This commit is contained in:
Dietmar Maurer
2019-03-02 10:31:32 +01:00
parent e909522f06
commit 3147e56a74
4 changed files with 55 additions and 4 deletions

View File

@ -48,6 +48,9 @@ source_suffix = '.rst'
# The master toctree document.
master_doc = 'index'
epilog_file = open('epilog.rst', 'r')
rst_epilog = epilog_file.read()
# General information about the project.
project = 'Proxmox Backup'
copyright = '2019, Proxmox Support Team'
@ -84,6 +87,7 @@ language = None
exclude_patterns = [
'_build', 'Thumbs.db', '.DS_Store',
'proxmox-backup-client/man1.rst',
'epilog.rst',
'pbs-copyright.rst',
]