stouputils 1.2.11__tar.gz → 1.2.12__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {stouputils-1.2.11 → stouputils-1.2.12}/PKG-INFO +1 -1
- {stouputils-1.2.11 → stouputils-1.2.12}/pyproject.toml +1 -1
- {stouputils-1.2.11 → stouputils-1.2.12}/stouputils/applications/automatic_docs.py +2 -1
- {stouputils-1.2.11 → stouputils-1.2.12}/.gitignore +0 -0
- {stouputils-1.2.11 → stouputils-1.2.12}/LICENSE +0 -0
- {stouputils-1.2.11 → stouputils-1.2.12}/README.md +0 -0
- {stouputils-1.2.11 → stouputils-1.2.12}/stouputils/__init__.py +0 -0
- {stouputils-1.2.11 → stouputils-1.2.12}/stouputils/all_doctests.py +0 -0
- {stouputils-1.2.11 → stouputils-1.2.12}/stouputils/applications/__init__.py +0 -0
- {stouputils-1.2.11 → stouputils-1.2.12}/stouputils/archive.py +0 -0
- {stouputils-1.2.11 → stouputils-1.2.12}/stouputils/backup.py +0 -0
- {stouputils-1.2.11 → stouputils-1.2.12}/stouputils/collections.py +0 -0
- {stouputils-1.2.11 → stouputils-1.2.12}/stouputils/continuous_delivery/__init__.py +0 -0
- {stouputils-1.2.11 → stouputils-1.2.12}/stouputils/continuous_delivery/cd_utils.py +0 -0
- {stouputils-1.2.11 → stouputils-1.2.12}/stouputils/continuous_delivery/github.py +0 -0
- {stouputils-1.2.11 → stouputils-1.2.12}/stouputils/continuous_delivery/pypi.py +0 -0
- {stouputils-1.2.11 → stouputils-1.2.12}/stouputils/continuous_delivery/pyproject.py +0 -0
- {stouputils-1.2.11 → stouputils-1.2.12}/stouputils/ctx.py +0 -0
- {stouputils-1.2.11 → stouputils-1.2.12}/stouputils/decorators.py +0 -0
- {stouputils-1.2.11 → stouputils-1.2.12}/stouputils/dont_look/zip_file_override.py +0 -0
- {stouputils-1.2.11 → stouputils-1.2.12}/stouputils/io.py +0 -0
- {stouputils-1.2.11 → stouputils-1.2.12}/stouputils/parallel.py +0 -0
- {stouputils-1.2.11 → stouputils-1.2.12}/stouputils/print.py +0 -0
- {stouputils-1.2.11 → stouputils-1.2.12}/stouputils/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: stouputils
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.12
|
|
4
4
|
Summary: Stouputils is a collection of utility modules designed to simplify and enhance the development process. It includes a range of tools for tasks such as execution of doctests, display utilities, decorators, as well as context managers, and many more.
|
|
5
5
|
Project-URL: Homepage, https://github.com/Stoupy51/stouputils
|
|
6
6
|
Project-URL: Issues, https://github.com/Stoupy51/stouputils/issues
|
|
@@ -5,7 +5,7 @@ build-backend = "hatchling.build"
|
|
|
5
5
|
|
|
6
6
|
[project]
|
|
7
7
|
name = "stouputils"
|
|
8
|
-
version = "1.2.
|
|
8
|
+
version = "1.2.12"
|
|
9
9
|
description = "Stouputils is a collection of utility modules designed to simplify and enhance the development process. It includes a range of tools for tasks such as execution of doctests, display utilities, decorators, as well as context managers, and many more."
|
|
10
10
|
readme = "README.md"
|
|
11
11
|
requires-python = ">=3.10"
|
|
@@ -305,11 +305,12 @@ def generate_index_rst(
|
|
|
305
305
|
version_selector += ", ".join(version_links)
|
|
306
306
|
|
|
307
307
|
# Generate module documentation section
|
|
308
|
+
project_module: str = project.lower()
|
|
308
309
|
module_docs: str = f"""
|
|
309
310
|
.. toctree::
|
|
310
311
|
:maxdepth: 10
|
|
311
312
|
|
|
312
|
-
modules/{
|
|
313
|
+
modules/{project_module}
|
|
313
314
|
"""
|
|
314
315
|
|
|
315
316
|
# Convert markdown to RST
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|