Skip to content

Commit 3c018ed

Browse files
committed
Updated dunder-variables.
1 parent 80643ee commit 3c018ed

2 files changed

Lines changed: 10 additions & 7 deletions

File tree

run.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Param(
3232
)
3333

3434
$PackageName = "sphinx_reports"
35-
$PackageVersion = "0.9.10"
35+
$PackageVersion = "0.11.1"
3636

3737
# set default values
3838
$EnableDebug = [bool]$PSCmdlet.MyInvocation.BoundParameters["Debug"]

sphinx_reports/__init__.py

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,18 @@
3939
* :ref:`DEP`
4040
4141
"""
42-
__author__ = "Patrick Lehmann"
43-
__email__ = "Paebbels@gmail.com"
44-
__copyright__ = "2023-2026, Patrick Lehmann"
45-
__license__ = "Apache License, Version 2.0"
46-
__version__ = "0.11.0"
47-
__keywords__ = [
42+
__author__ = "Patrick Lehmann"
43+
__email__ = "Paebbels@gmail.com"
44+
__copyright__ = "2023-2026, Patrick Lehmann"
45+
__license__ = "Apache License, Version 2.0"
46+
__version__ = "0.11.1"
47+
__keywords__ = [
4848
"Python3", "Sphinx", "Extension", "Report", "doc-string", "interrogate", "Code Coverage", "Coverage",
4949
"Documentation Coverage", "Unittest", "Dependencies", "Summary"
5050
]
51+
__project_url__ = "https://github.com/pyTooling/sphinx-reports"
52+
__documentation_url__ = "https://pyTooling.github.io/sphinx-reports"
53+
__issue_tracker_url__ = "https://GitHub.com/pyTooling/sphinx-reports/issues"
5154

5255
from hashlib import md5
5356
from pathlib import Path

0 commit comments

Comments
 (0)