Merge branch 'main' of github.com:c9moser/sgbackup

This commit is contained in:
Christian Moser 2025-01-02 20:28:52 +01:00
commit 88d82d01fe
5 changed files with 44 additions and 44 deletions

View File

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -1,44 +1,44 @@
# vim: syn=python ts=4 sts=4 sw=4 smartindent autoindent expandtab
import sys,os
PROJECT_ROOT = os.path.dirname(os.path.dirname(__file__))
sys.path.insert(0,PROJECT_ROOT)
import sgbackup
project = 'sgbackup'
copyright = '2024-2025, Christian Moser'
author = 'Christian Moser'
version = sgbackup.__version__
exclude_patterns = [
'_build',
'Thumbs.db',
'.DS_Store',
'*~',
'*.swp',
'*.tmp',
'*.temp',
'*.log',
]
extensions = [
'sphinx.ext.autodoc'
]
language = 'en'
master_doc = 'index'
source_suffix = '.rst'
templates_path = ['templates']
html_theme = 'sphinx_rtd_theme'
html_show_sourcelink = False
#html_static_path = ['_static']
autoclass_content='both'
autodoc_class_signature='mixed'
autodoc_default_options={
'member_order':'alphabetical',
'undoc_members':'true',
'exclude_memebers':'__weakref__',
}
# vim: syn=python ts=4 sts=4 sw=4 smartindent autoindent expandtab
import sys,os
PROJECT_ROOT = os.path.dirname(os.path.dirname(__file__))
sys.path.insert(0,PROJECT_ROOT)
import sgbackup
project = 'sgbackup'
copyright = '2024-2025, Christian Moser'
author = 'Christian Moser'
version = sgbackup.__version__
exclude_patterns = [
'_build',
'Thumbs.db',
'.DS_Store',
'*~',
'*.swp',
'*.tmp',
'*.temp',
'*.log',
]
extensions = [
'sphinx.ext.autodoc'
]
language = 'en'
master_doc = 'index'
source_suffix = '.rst'
templates_path = ['templates']
html_theme = 'sphinx_rtd_theme'
html_show_sourcelink = False
#html_static_path = ['_static']
autoclass_content='both'
autodoc_class_signature='mixed'
autodoc_default_options={
'member_order':'alphabetical',
'undoc_members':'true',
'exclude_memebers':'__weakref__',
}