wexample-cli 0.5.0__tar.gz → 0.5.1__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.
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/PKG-INFO +4 -4
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/README.md +2 -2
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/pyproject.toml +2 -2
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/__init__.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/command/__init__.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/command/extended_command.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/common/__init__.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/common/command_method_wrapper.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/const/__init__.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/const/middleware.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/const/types.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/context/__init__.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/context/execution_context.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/decorator/__init__.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/decorator/alias.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/decorator/as_sudo.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/decorator/command.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/decorator/middleware.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/decorator/option.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/decorator/option_stop_on_failure.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/decorator/screenable.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/decorator/webhook.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/exception/__init__.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/exception/abstract_command_option_exception.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/exception/command_option_missing_exception.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/exception/command_option_validation_exception.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/helpers/__init__.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/helpers/extra_args.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/middleware/__init__.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/middleware/abstract_middleware.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/py.typed +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/testing/__init__.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/testing/kernel.py +0 -0
- {wexample_cli-0.5.0 → wexample_cli-0.5.1}/tests/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: wexample-cli
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.1
|
|
4
4
|
Summary: Reusable CLI primitives — command decorators, options, middlewares, and the enriched command runner — extracted from wex-core so any kernel built on wexample-app can opt in without depending on the full wex framework.
|
|
5
5
|
Author-Email: weeger <contact@wexample.com>
|
|
6
6
|
License: MIT
|
|
@@ -12,7 +12,7 @@ Requires-Python: >=3.10
|
|
|
12
12
|
Requires-Dist: attrs>=23.1.0
|
|
13
13
|
Requires-Dist: wexample-app>=15.3.0
|
|
14
14
|
Requires-Dist: wexample-helpers>=13.1.0
|
|
15
|
-
Requires-Dist: wexample-prompt>=9.
|
|
15
|
+
Requires-Dist: wexample-prompt>=9.2.0
|
|
16
16
|
Provides-Extra: dev
|
|
17
17
|
Requires-Dist: pytest; extra == "dev"
|
|
18
18
|
Requires-Dist: pytest-cov; extra == "dev"
|
|
@@ -20,7 +20,7 @@ Description-Content-Type: text/markdown
|
|
|
20
20
|
|
|
21
21
|
# cli
|
|
22
22
|
|
|
23
|
-
Version: 0.5.
|
|
23
|
+
Version: 0.5.1
|
|
24
24
|
|
|
25
25
|
Reusable CLI primitives — command decorators, options, middlewares, and the enriched command runner — extracted from wex-core so any kernel built on wexample-app can opt in without depending on the full wex framework.
|
|
26
26
|
|
|
@@ -102,7 +102,7 @@ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the comp
|
|
|
102
102
|
- attrs: >=23.1.0
|
|
103
103
|
- wexample-app: >=15.3.0
|
|
104
104
|
- wexample-helpers: >=13.1.0
|
|
105
|
-
- wexample-prompt: >=9.
|
|
105
|
+
- wexample-prompt: >=9.2.0
|
|
106
106
|
|
|
107
107
|
## Versioning & Compatibility Policy
|
|
108
108
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# cli
|
|
2
2
|
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.1
|
|
4
4
|
|
|
5
5
|
Reusable CLI primitives — command decorators, options, middlewares, and the enriched command runner — extracted from wex-core so any kernel built on wexample-app can opt in without depending on the full wex framework.
|
|
6
6
|
|
|
@@ -82,7 +82,7 @@ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the comp
|
|
|
82
82
|
- attrs: >=23.1.0
|
|
83
83
|
- wexample-app: >=15.3.0
|
|
84
84
|
- wexample-helpers: >=13.1.0
|
|
85
|
-
- wexample-prompt: >=9.
|
|
85
|
+
- wexample-prompt: >=9.2.0
|
|
86
86
|
|
|
87
87
|
## Versioning & Compatibility Policy
|
|
88
88
|
|
|
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
|
|
|
6
6
|
|
|
7
7
|
[project]
|
|
8
8
|
name = "wexample-cli"
|
|
9
|
-
version = "0.5.
|
|
9
|
+
version = "0.5.1"
|
|
10
10
|
description = "Reusable CLI primitives — command decorators, options, middlewares, and the enriched command runner — extracted from wex-core so any kernel built on wexample-app can opt in without depending on the full wex framework."
|
|
11
11
|
authors = [
|
|
12
12
|
{ name = "weeger", email = "contact@wexample.com" },
|
|
@@ -21,7 +21,7 @@ dependencies = [
|
|
|
21
21
|
"attrs>=23.1.0",
|
|
22
22
|
"wexample-app>=15.3.0",
|
|
23
23
|
"wexample-helpers>=13.1.0",
|
|
24
|
-
"wexample-prompt>=9.
|
|
24
|
+
"wexample-prompt>=9.2.0",
|
|
25
25
|
]
|
|
26
26
|
|
|
27
27
|
[project.readme]
|
|
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
|
{wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/decorator/option_stop_on_failure.py
RENAMED
|
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
|
{wexample_cli-0.5.0 → wexample_cli-0.5.1}/src/wexample_cli/middleware/abstract_middleware.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|