processes 1.0.2__tar.gz → 1.0.4__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.
Files changed (41) hide show
  1. {processes-1.0.2 → processes-1.0.4}/CHANGELOG.md +12 -0
  2. {processes-1.0.2 → processes-1.0.4}/PKG-INFO +12 -5
  3. {processes-1.0.2 → processes-1.0.4}/README.md +11 -4
  4. {processes-1.0.2 → processes-1.0.4}/docs/index.md +4 -0
  5. {processes-1.0.2 → processes-1.0.4}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  6. {processes-1.0.2 → processes-1.0.4}/.github/ISSUE_TEMPLATE/custom.md +0 -0
  7. {processes-1.0.2 → processes-1.0.4}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  8. {processes-1.0.2 → processes-1.0.4}/.github/workflows/docs.yml +0 -0
  9. {processes-1.0.2 → processes-1.0.4}/.github/workflows/lint-pr.yml +0 -0
  10. {processes-1.0.2 → processes-1.0.4}/.github/workflows/lint.yml +0 -0
  11. {processes-1.0.2 → processes-1.0.4}/.github/workflows/mypy.yml +0 -0
  12. {processes-1.0.2 → processes-1.0.4}/.github/workflows/publish.yml +0 -0
  13. {processes-1.0.2 → processes-1.0.4}/.github/workflows/tags.yml +0 -0
  14. {processes-1.0.2 → processes-1.0.4}/.github/workflows/tests.yml +0 -0
  15. {processes-1.0.2 → processes-1.0.4}/.gitignore +0 -0
  16. {processes-1.0.2 → processes-1.0.4}/LICENSE +0 -0
  17. {processes-1.0.2 → processes-1.0.4}/assets/banner.svg +0 -0
  18. {processes-1.0.2 → processes-1.0.4}/docs/reference.md +0 -0
  19. {processes-1.0.2 → processes-1.0.4}/examples/01_basic_tasks_and_dependencies/README.md +0 -0
  20. {processes-1.0.2 → processes-1.0.4}/examples/01_basic_tasks_and_dependencies/example1.py +0 -0
  21. {processes-1.0.2 → processes-1.0.4}/examples/02_task_dependencies_result_passing/README.md +0 -0
  22. {processes-1.0.2 → processes-1.0.4}/examples/02_task_dependencies_result_passing/example2.py +0 -0
  23. {processes-1.0.2 → processes-1.0.4}/examples/README.md +0 -0
  24. {processes-1.0.2 → processes-1.0.4}/mkdocs.yml +0 -0
  25. {processes-1.0.2 → processes-1.0.4}/pyproject.toml +0 -0
  26. {processes-1.0.2 → processes-1.0.4}/pytest.ini +0 -0
  27. {processes-1.0.2 → processes-1.0.4}/src/processes/__init__.py +0 -0
  28. {processes-1.0.2 → processes-1.0.4}/src/processes/html_logging.py +0 -0
  29. {processes-1.0.2 → processes-1.0.4}/src/processes/process.py +0 -0
  30. {processes-1.0.2 → processes-1.0.4}/src/processes/task.py +0 -0
  31. {processes-1.0.2 → processes-1.0.4}/tests/__init__.py +0 -0
  32. {processes-1.0.2 → processes-1.0.4}/tests/log_cleaner.py +0 -0
  33. {processes-1.0.2 → processes-1.0.4}/tests/mail_config.example.toml +0 -0
  34. {processes-1.0.2 → processes-1.0.4}/tests/manual_test_email.py +0 -0
  35. {processes-1.0.2 → processes-1.0.4}/tests/test_args_kwargs.py +0 -0
  36. {processes-1.0.2 → processes-1.0.4}/tests/test_dependencies.py +0 -0
  37. {processes-1.0.2 → processes-1.0.4}/tests/test_examples.py +0 -0
  38. {processes-1.0.2 → processes-1.0.4}/tests/test_logfiles.py +0 -0
  39. {processes-1.0.2 → processes-1.0.4}/tests/test_normal_run_no_errors.py +0 -0
  40. {processes-1.0.2 → processes-1.0.4}/tests/test_unique_name.py +0 -0
  41. {processes-1.0.2 → processes-1.0.4}/uv.lock +0 -0
@@ -1,3 +1,15 @@
1
+ ## v1.0.4 (2026-01-19)
2
+
3
+ ### Fix
4
+
5
+ - **docs**: added pypi badge and pip install instruction to readme
6
+
7
+ ## v1.0.3 (2026-01-19)
8
+
9
+ ### Fix
10
+
11
+ - **docs**: changes in readme and index of docs to show banner
12
+
1
13
  ## v1.0.2 (2026-01-19)
2
14
 
3
15
  ### Fix
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: processes
3
- Version: 1.0.2
3
+ Version: 1.0.4
4
4
  Summary: A Python library for managing and executing dependent tasks in parallel or sequential order with automatic dependency resolution and topological sorting
5
5
  Author-email: Oliver Mohr Bonometti <oliver.mohr.b@gmail.com>
6
6
  License-Expression: MIT
@@ -18,22 +18,24 @@ Requires-Python: >=3.10
18
18
  Description-Content-Type: text/markdown
19
19
 
20
20
  <div align="center">
21
- <img src="assets/banner.svg" width="100%" alt="Processes - Smart Task Orchestration">
21
+ <img src="https://raw.githubusercontent.com/oliverm91/processes/refs/heads/main/assets/banner.svg" width="100%" alt="Processes - Smart Task Orchestration">
22
22
  </div>
23
23
 
24
24
  # 🚀 Processes: Smart Task Orchestration
25
25
 
26
26
  [![Python Version](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://www.python.org/)
27
- [![Python Tests Status](https://github.com/oliverm91/processes/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/oliverm91/processes/actions/workflows/tests.yml)
28
27
  ![Fast & Lightweight](https://img.shields.io/badge/Library-Pure%20Python-green.svg)
29
28
 
30
29
 
31
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
32
30
  [![Documentation](https://img.shields.io/badge/docs-GitHub%20Pages-blue.svg)](https://oliverm91.github.io/processes/)
31
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
32
+
33
33
 
34
+ [![Python Tests Status](https://github.com/oliverm91/processes/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/oliverm91/processes/actions/workflows/tests.yml)
34
35
  [![Ruff Lint Status](https://github.com/oliverm91/processes/actions/workflows/lint.yml/badge.svg?branch=main)](https://github.com/oliverm91/processes/actions/workflows/lint.yml)
35
36
  [![mypy-check](https://github.com/oliverm91/processes/actions/workflows/mypy.yml/badge.svg)](https://github.com/oliverm91/processes/actions/workflows/mypy.yml)
36
37
 
38
+ [![PyPI version](https://img.shields.io/pypi/v/processes.svg)](https://pypi.org/project/processes/)
37
39
 
38
40
 
39
41
 
@@ -148,7 +150,12 @@ All tasks record their execution flow to their assigned logfiles. You can share
148
150
 
149
151
  ## 📦 Installation
150
152
 
151
- Since it's a pure Python library, you can install it directly from the repository using `pip`:
153
+ Registered in PyPI: https://pypi.org/project/processes/
154
+ ```bash
155
+ pip install processes
156
+ ```
157
+
158
+ Also, since it's a pure Python library, you can install it directly from the repository:
152
159
 
153
160
  ```bash
154
161
  pip install git+https://github.com/oliverm91/processes.git
@@ -1,20 +1,22 @@
1
1
  <div align="center">
2
- <img src="assets/banner.svg" width="100%" alt="Processes - Smart Task Orchestration">
2
+ <img src="https://raw.githubusercontent.com/oliverm91/processes/refs/heads/main/assets/banner.svg" width="100%" alt="Processes - Smart Task Orchestration">
3
3
  </div>
4
4
 
5
5
  # 🚀 Processes: Smart Task Orchestration
6
6
 
7
7
  [![Python Version](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://www.python.org/)
8
- [![Python Tests Status](https://github.com/oliverm91/processes/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/oliverm91/processes/actions/workflows/tests.yml)
9
8
  ![Fast & Lightweight](https://img.shields.io/badge/Library-Pure%20Python-green.svg)
10
9
 
11
10
 
12
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
13
11
  [![Documentation](https://img.shields.io/badge/docs-GitHub%20Pages-blue.svg)](https://oliverm91.github.io/processes/)
12
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
13
+
14
14
 
15
+ [![Python Tests Status](https://github.com/oliverm91/processes/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/oliverm91/processes/actions/workflows/tests.yml)
15
16
  [![Ruff Lint Status](https://github.com/oliverm91/processes/actions/workflows/lint.yml/badge.svg?branch=main)](https://github.com/oliverm91/processes/actions/workflows/lint.yml)
16
17
  [![mypy-check](https://github.com/oliverm91/processes/actions/workflows/mypy.yml/badge.svg)](https://github.com/oliverm91/processes/actions/workflows/mypy.yml)
17
18
 
19
+ [![PyPI version](https://img.shields.io/pypi/v/processes.svg)](https://pypi.org/project/processes/)
18
20
 
19
21
 
20
22
 
@@ -129,7 +131,12 @@ All tasks record their execution flow to their assigned logfiles. You can share
129
131
 
130
132
  ## 📦 Installation
131
133
 
132
- Since it's a pure Python library, you can install it directly from the repository using `pip`:
134
+ Registered in PyPI: https://pypi.org/project/processes/
135
+ ```bash
136
+ pip install processes
137
+ ```
138
+
139
+ Also, since it's a pure Python library, you can install it directly from the repository:
133
140
 
134
141
  ```bash
135
142
  pip install git+https://github.com/oliverm91/processes.git
@@ -1,3 +1,7 @@
1
+ <div align="center">
2
+ <img src="https://raw.githubusercontent.com/oliverm91/processes/refs/heads/main/assets/banner.svg" width="100%" alt="Processes - Smart Task Orchestration">
3
+ </div>
4
+
1
5
  # 🚀 Processes: Smart Task Orchestration
2
6
 
3
7
  [![Python Version](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://www.python.org/)
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