processes 1.0.3__tar.gz → 1.0.5__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.3 → processes-1.0.5}/CHANGELOG.md +12 -0
  2. {processes-1.0.3 → processes-1.0.5}/PKG-INFO +16 -4
  3. {processes-1.0.3 → processes-1.0.5}/README.md +10 -3
  4. {processes-1.0.3 → processes-1.0.5}/pyproject.toml +7 -0
  5. {processes-1.0.3 → processes-1.0.5}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  6. {processes-1.0.3 → processes-1.0.5}/.github/ISSUE_TEMPLATE/custom.md +0 -0
  7. {processes-1.0.3 → processes-1.0.5}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  8. {processes-1.0.3 → processes-1.0.5}/.github/workflows/docs.yml +0 -0
  9. {processes-1.0.3 → processes-1.0.5}/.github/workflows/lint-pr.yml +0 -0
  10. {processes-1.0.3 → processes-1.0.5}/.github/workflows/lint.yml +0 -0
  11. {processes-1.0.3 → processes-1.0.5}/.github/workflows/mypy.yml +0 -0
  12. {processes-1.0.3 → processes-1.0.5}/.github/workflows/publish.yml +0 -0
  13. {processes-1.0.3 → processes-1.0.5}/.github/workflows/tags.yml +0 -0
  14. {processes-1.0.3 → processes-1.0.5}/.github/workflows/tests.yml +0 -0
  15. {processes-1.0.3 → processes-1.0.5}/.gitignore +0 -0
  16. {processes-1.0.3 → processes-1.0.5}/LICENSE +0 -0
  17. {processes-1.0.3 → processes-1.0.5}/assets/banner.svg +0 -0
  18. {processes-1.0.3 → processes-1.0.5}/docs/index.md +0 -0
  19. {processes-1.0.3 → processes-1.0.5}/docs/reference.md +0 -0
  20. {processes-1.0.3 → processes-1.0.5}/examples/01_basic_tasks_and_dependencies/README.md +0 -0
  21. {processes-1.0.3 → processes-1.0.5}/examples/01_basic_tasks_and_dependencies/example1.py +0 -0
  22. {processes-1.0.3 → processes-1.0.5}/examples/02_task_dependencies_result_passing/README.md +0 -0
  23. {processes-1.0.3 → processes-1.0.5}/examples/02_task_dependencies_result_passing/example2.py +0 -0
  24. {processes-1.0.3 → processes-1.0.5}/examples/README.md +0 -0
  25. {processes-1.0.3 → processes-1.0.5}/mkdocs.yml +0 -0
  26. {processes-1.0.3 → processes-1.0.5}/pytest.ini +0 -0
  27. {processes-1.0.3 → processes-1.0.5}/src/processes/__init__.py +0 -0
  28. {processes-1.0.3 → processes-1.0.5}/src/processes/html_logging.py +0 -0
  29. {processes-1.0.3 → processes-1.0.5}/src/processes/process.py +0 -0
  30. {processes-1.0.3 → processes-1.0.5}/src/processes/task.py +0 -0
  31. {processes-1.0.3 → processes-1.0.5}/tests/__init__.py +0 -0
  32. {processes-1.0.3 → processes-1.0.5}/tests/log_cleaner.py +0 -0
  33. {processes-1.0.3 → processes-1.0.5}/tests/mail_config.example.toml +0 -0
  34. {processes-1.0.3 → processes-1.0.5}/tests/manual_test_email.py +0 -0
  35. {processes-1.0.3 → processes-1.0.5}/tests/test_args_kwargs.py +0 -0
  36. {processes-1.0.3 → processes-1.0.5}/tests/test_dependencies.py +0 -0
  37. {processes-1.0.3 → processes-1.0.5}/tests/test_examples.py +0 -0
  38. {processes-1.0.3 → processes-1.0.5}/tests/test_logfiles.py +0 -0
  39. {processes-1.0.3 → processes-1.0.5}/tests/test_normal_run_no_errors.py +0 -0
  40. {processes-1.0.3 → processes-1.0.5}/tests/test_unique_name.py +0 -0
  41. {processes-1.0.3 → processes-1.0.5}/uv.lock +0 -0
@@ -1,3 +1,15 @@
1
+ ## v1.0.5 (2026-01-19)
2
+
3
+ ### Fix
4
+
5
+ - **docs**: added urls to pyproject file
6
+
7
+ ## v1.0.4 (2026-01-19)
8
+
9
+ ### Fix
10
+
11
+ - **docs**: added pypi badge and pip install instruction to readme
12
+
1
13
  ## v1.0.3 (2026-01-19)
2
14
 
3
15
  ### Fix
@@ -1,7 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: processes
3
- Version: 1.0.3
3
+ Version: 1.0.5
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
+ Project-URL: Homepage, https://github.com/oliverm91/processes
6
+ Project-URL: Documentation, https://oliverm91.github.io/processes/
7
+ Project-URL: Repository, https://github.com/oliverm91/processes
8
+ Project-URL: Issues, https://github.com/oliverm91/processes/issues
9
+ Project-URL: Changelog, https://github.com/oliverm91/processes/blob/main/CHANGELOG.md
5
10
  Author-email: Oliver Mohr Bonometti <oliver.mohr.b@gmail.com>
6
11
  License-Expression: MIT
7
12
  License-File: LICENSE
@@ -24,16 +29,18 @@ Description-Content-Type: text/markdown
24
29
  # 🚀 Processes: Smart Task Orchestration
25
30
 
26
31
  [![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
32
  ![Fast & Lightweight](https://img.shields.io/badge/Library-Pure%20Python-green.svg)
29
33
 
30
34
 
31
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
32
35
  [![Documentation](https://img.shields.io/badge/docs-GitHub%20Pages-blue.svg)](https://oliverm91.github.io/processes/)
36
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
37
+
33
38
 
39
+ [![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
40
  [![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
41
  [![mypy-check](https://github.com/oliverm91/processes/actions/workflows/mypy.yml/badge.svg)](https://github.com/oliverm91/processes/actions/workflows/mypy.yml)
36
42
 
43
+ [![PyPI version](https://img.shields.io/pypi/v/processes.svg)](https://pypi.org/project/processes/)
37
44
 
38
45
 
39
46
 
@@ -148,7 +155,12 @@ All tasks record their execution flow to their assigned logfiles. You can share
148
155
 
149
156
  ## 📦 Installation
150
157
 
151
- Since it's a pure Python library, you can install it directly from the repository using `pip`:
158
+ Registered in PyPI: https://pypi.org/project/processes/
159
+ ```bash
160
+ pip install processes
161
+ ```
162
+
163
+ Also, since it's a pure Python library, you can install it directly from the repository:
152
164
 
153
165
  ```bash
154
166
  pip install git+https://github.com/oliverm91/processes.git
@@ -5,16 +5,18 @@
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
@@ -63,3 +63,10 @@ line-length = 100
63
63
  [tool.ruff.lint]
64
64
  select = ["F", "E", "W", "I", "B", "UP"]
65
65
  ignore = []
66
+
67
+ [project.urls]
68
+ Homepage = "https://github.com/oliverm91/processes"
69
+ Documentation = "https://oliverm91.github.io/processes/"
70
+ Repository = "https://github.com/oliverm91/processes"
71
+ Issues = "https://github.com/oliverm91/processes/issues"
72
+ Changelog = "https://github.com/oliverm91/processes/blob/main/CHANGELOG.md"
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