stouputils 1.2.10__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.10 → stouputils-1.2.12}/PKG-INFO +1 -1
- {stouputils-1.2.10 → stouputils-1.2.12}/pyproject.toml +1 -1
- {stouputils-1.2.10 → stouputils-1.2.12}/stouputils/applications/automatic_docs.py +10 -3
- {stouputils-1.2.10 → stouputils-1.2.12}/.gitignore +0 -0
- {stouputils-1.2.10 → stouputils-1.2.12}/LICENSE +0 -0
- {stouputils-1.2.10 → stouputils-1.2.12}/README.md +0 -0
- {stouputils-1.2.10 → stouputils-1.2.12}/stouputils/__init__.py +0 -0
- {stouputils-1.2.10 → stouputils-1.2.12}/stouputils/all_doctests.py +0 -0
- {stouputils-1.2.10 → stouputils-1.2.12}/stouputils/applications/__init__.py +0 -0
- {stouputils-1.2.10 → stouputils-1.2.12}/stouputils/archive.py +0 -0
- {stouputils-1.2.10 → stouputils-1.2.12}/stouputils/backup.py +0 -0
- {stouputils-1.2.10 → stouputils-1.2.12}/stouputils/collections.py +0 -0
- {stouputils-1.2.10 → stouputils-1.2.12}/stouputils/continuous_delivery/__init__.py +0 -0
- {stouputils-1.2.10 → stouputils-1.2.12}/stouputils/continuous_delivery/cd_utils.py +0 -0
- {stouputils-1.2.10 → stouputils-1.2.12}/stouputils/continuous_delivery/github.py +0 -0
- {stouputils-1.2.10 → stouputils-1.2.12}/stouputils/continuous_delivery/pypi.py +0 -0
- {stouputils-1.2.10 → stouputils-1.2.12}/stouputils/continuous_delivery/pyproject.py +0 -0
- {stouputils-1.2.10 → stouputils-1.2.12}/stouputils/ctx.py +0 -0
- {stouputils-1.2.10 → stouputils-1.2.12}/stouputils/decorators.py +0 -0
- {stouputils-1.2.10 → stouputils-1.2.12}/stouputils/dont_look/zip_file_override.py +0 -0
- {stouputils-1.2.10 → stouputils-1.2.12}/stouputils/io.py +0 -0
- {stouputils-1.2.10 → stouputils-1.2.12}/stouputils/parallel.py +0 -0
- {stouputils-1.2.10 → stouputils-1.2.12}/stouputils/print.py +0 -0
- {stouputils-1.2.10 → 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"
|
|
@@ -80,6 +80,7 @@ from ..print import info
|
|
|
80
80
|
|
|
81
81
|
def get_sphinx_conf_content(
|
|
82
82
|
project: str,
|
|
83
|
+
project_dir: str,
|
|
83
84
|
author: str,
|
|
84
85
|
current_version: str,
|
|
85
86
|
copyright: str,
|
|
@@ -94,6 +95,7 @@ def get_sphinx_conf_content(
|
|
|
94
95
|
|
|
95
96
|
Args:
|
|
96
97
|
project (str): Name of the project
|
|
98
|
+
project_dir (str): Path to the project directory
|
|
97
99
|
author (str): Author of the project
|
|
98
100
|
current_version (str): Current version
|
|
99
101
|
copyright (str): Copyright information
|
|
@@ -107,12 +109,15 @@ def get_sphinx_conf_content(
|
|
|
107
109
|
Returns:
|
|
108
110
|
str: Content of the Sphinx configuration file
|
|
109
111
|
"""
|
|
112
|
+
parent_of_project_dir: str = clean_path(os.path.dirname(project_dir))
|
|
110
113
|
conf_content: str = f"""
|
|
111
114
|
# Imports
|
|
112
|
-
import os
|
|
113
115
|
import sys
|
|
114
116
|
from typing import Any
|
|
115
117
|
|
|
118
|
+
# Add project_dir directory to Python path for module discovery
|
|
119
|
+
sys.path.insert(0, "{parent_of_project_dir}")
|
|
120
|
+
|
|
116
121
|
# Project information
|
|
117
122
|
project: str = "{project}"
|
|
118
123
|
copyright: str = "{copyright}"
|
|
@@ -123,7 +128,7 @@ release: str = "{current_version}"
|
|
|
123
128
|
extensions: list[str] = [
|
|
124
129
|
"sphinx.ext.autodoc",
|
|
125
130
|
"sphinx.ext.napoleon",
|
|
126
|
-
"sphinx.ext.viewcode",
|
|
131
|
+
"sphinx.ext.viewcode",
|
|
127
132
|
"sphinx.ext.githubpages",
|
|
128
133
|
"sphinx.ext.intersphinx",
|
|
129
134
|
"furo.sphinxext",
|
|
@@ -300,11 +305,12 @@ def generate_index_rst(
|
|
|
300
305
|
version_selector += ", ".join(version_links)
|
|
301
306
|
|
|
302
307
|
# Generate module documentation section
|
|
308
|
+
project_module: str = project.lower()
|
|
303
309
|
module_docs: str = f"""
|
|
304
310
|
.. toctree::
|
|
305
311
|
:maxdepth: 10
|
|
306
312
|
|
|
307
|
-
modules/{
|
|
313
|
+
modules/{project_module}
|
|
308
314
|
"""
|
|
309
315
|
|
|
310
316
|
# Convert markdown to RST
|
|
@@ -468,6 +474,7 @@ def update_documentation(
|
|
|
468
474
|
conf_path: str = f"{source_dir}/conf.py"
|
|
469
475
|
conf_content: str = get_conf_content_function(
|
|
470
476
|
project=project,
|
|
477
|
+
project_dir=project_dir,
|
|
471
478
|
author=author,
|
|
472
479
|
current_version=current_version,
|
|
473
480
|
copyright=copyright,
|
|
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
|