stouputils 1.2.9__tar.gz → 1.2.10__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.9 → stouputils-1.2.10}/PKG-INFO +1 -1
- {stouputils-1.2.9 → stouputils-1.2.10}/pyproject.toml +1 -1
- {stouputils-1.2.9 → stouputils-1.2.10}/stouputils/applications/automatic_docs.py +3 -1
- {stouputils-1.2.9 → stouputils-1.2.10}/.gitignore +0 -0
- {stouputils-1.2.9 → stouputils-1.2.10}/LICENSE +0 -0
- {stouputils-1.2.9 → stouputils-1.2.10}/README.md +0 -0
- {stouputils-1.2.9 → stouputils-1.2.10}/stouputils/__init__.py +0 -0
- {stouputils-1.2.9 → stouputils-1.2.10}/stouputils/all_doctests.py +0 -0
- {stouputils-1.2.9 → stouputils-1.2.10}/stouputils/applications/__init__.py +0 -0
- {stouputils-1.2.9 → stouputils-1.2.10}/stouputils/archive.py +0 -0
- {stouputils-1.2.9 → stouputils-1.2.10}/stouputils/backup.py +0 -0
- {stouputils-1.2.9 → stouputils-1.2.10}/stouputils/collections.py +0 -0
- {stouputils-1.2.9 → stouputils-1.2.10}/stouputils/continuous_delivery/__init__.py +0 -0
- {stouputils-1.2.9 → stouputils-1.2.10}/stouputils/continuous_delivery/cd_utils.py +0 -0
- {stouputils-1.2.9 → stouputils-1.2.10}/stouputils/continuous_delivery/github.py +0 -0
- {stouputils-1.2.9 → stouputils-1.2.10}/stouputils/continuous_delivery/pypi.py +0 -0
- {stouputils-1.2.9 → stouputils-1.2.10}/stouputils/continuous_delivery/pyproject.py +0 -0
- {stouputils-1.2.9 → stouputils-1.2.10}/stouputils/ctx.py +0 -0
- {stouputils-1.2.9 → stouputils-1.2.10}/stouputils/decorators.py +0 -0
- {stouputils-1.2.9 → stouputils-1.2.10}/stouputils/dont_look/zip_file_override.py +0 -0
- {stouputils-1.2.9 → stouputils-1.2.10}/stouputils/io.py +0 -0
- {stouputils-1.2.9 → stouputils-1.2.10}/stouputils/parallel.py +0 -0
- {stouputils-1.2.9 → stouputils-1.2.10}/stouputils/print.py +0 -0
- {stouputils-1.2.9 → stouputils-1.2.10}/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.10
|
|
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.10"
|
|
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"
|
|
@@ -386,6 +386,7 @@ def generate_redirect_html(filepath: str) -> None:
|
|
|
386
386
|
def update_documentation(
|
|
387
387
|
root_path: str,
|
|
388
388
|
project: str,
|
|
389
|
+
project_dir: str = "",
|
|
389
390
|
author: str = "Author",
|
|
390
391
|
copyright: str = "2025, Author",
|
|
391
392
|
html_logo: str = "",
|
|
@@ -406,6 +407,7 @@ def update_documentation(
|
|
|
406
407
|
Args:
|
|
407
408
|
root_path (str): Root path of the project
|
|
408
409
|
project (str): Name of the project
|
|
410
|
+
project_dir (str): Path to the project directory (to be used with generate_docs_function)
|
|
409
411
|
author (str): Author of the project
|
|
410
412
|
copyright (str): Copyright information
|
|
411
413
|
html_logo (str): URL to the logo
|
|
@@ -483,7 +485,7 @@ def update_documentation(
|
|
|
483
485
|
generate_docs_function(
|
|
484
486
|
source_dir=source_dir,
|
|
485
487
|
modules_dir=modules_dir,
|
|
486
|
-
project_dir=f"{root_path}/{project}",
|
|
488
|
+
project_dir=project_dir if project_dir else f"{root_path}/{project}",
|
|
487
489
|
build_dir=build_dir,
|
|
488
490
|
)
|
|
489
491
|
|
|
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
|