wexample-wex-addon-dev-python 8.6.2__py3-none-any.whl → 8.7.0__py3-none-any.whl

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.
@@ -3,7 +3,7 @@ from __future__ import annotations
3
3
  from typing import TYPE_CHECKING
4
4
 
5
5
  if TYPE_CHECKING:
6
- from wexample_wex_core.context.execution_context import ExecutionContext
6
+ from wexample_cli.context.execution_context import ExecutionContext
7
7
 
8
8
 
9
9
  def _code_check_pylint(context: ExecutionContext, file_path: str) -> bool:
@@ -2,18 +2,18 @@ from __future__ import annotations
2
2
 
3
3
  from typing import TYPE_CHECKING
4
4
 
5
- from wexample_wex_core.const.globals import COMMAND_TYPE_ADDON
6
- from wexample_wex_core.const.middleware import (
5
+ from wexample_cli.const.middleware import (
7
6
  MIDDLEWARE_OPTION_VALUE_ALLWAYS,
8
7
  MIDDLEWARE_OPTION_VALUE_OPTIONAL,
9
8
  )
10
- from wexample_wex_core.decorator.command import command
11
- from wexample_wex_core.decorator.middleware import middleware
12
- from wexample_wex_core.decorator.option import option
13
- from wexample_wex_core.decorator.option_stop_on_failure import option_stop_on_failure
9
+ from wexample_cli.decorator.command import command
10
+ from wexample_cli.decorator.middleware import middleware
11
+ from wexample_cli.decorator.option import option
12
+ from wexample_cli.decorator.option_stop_on_failure import option_stop_on_failure
13
+ from wexample_wex_core.const.globals import COMMAND_TYPE_ADDON
14
14
 
15
15
  if TYPE_CHECKING:
16
- from wexample_wex_core.context.execution_context import ExecutionContext
16
+ from wexample_cli.context.execution_context import ExecutionContext
17
17
 
18
18
 
19
19
  @option(
@@ -2,10 +2,10 @@ from __future__ import annotations
2
2
 
3
3
  from typing import TYPE_CHECKING
4
4
 
5
+ from wexample_cli.decorator.command import command
6
+ from wexample_cli.decorator.middleware import middleware
7
+ from wexample_cli.decorator.option import option
5
8
  from wexample_wex_core.const.globals import COMMAND_TYPE_ADDON
6
- from wexample_wex_core.decorator.command import command
7
- from wexample_wex_core.decorator.middleware import middleware
8
- from wexample_wex_core.decorator.option import option
9
9
 
10
10
  if TYPE_CHECKING:
11
11
  from wexample_wex_core.common.kernel import Kernel
@@ -2,11 +2,11 @@ from __future__ import annotations
2
2
 
3
3
  from typing import TYPE_CHECKING
4
4
 
5
+ from wexample_cli.decorator.command import command
5
6
  from wexample_wex_core.const.globals import COMMAND_TYPE_ADDON
6
- from wexample_wex_core.decorator.command import command
7
7
 
8
8
  if TYPE_CHECKING:
9
- from wexample_wex_core.context.execution_context import ExecutionContext
9
+ from wexample_cli.context.execution_context import ExecutionContext
10
10
 
11
11
 
12
12
  @command(type=COMMAND_TYPE_ADDON, description="Check python code on every file.")
@@ -5,7 +5,7 @@ from typing import TYPE_CHECKING
5
5
  from wexample_wex_core.common.abstract_addon_manager import AbstractAddonManager
6
6
 
7
7
  if TYPE_CHECKING:
8
- from wexample_wex_core.middleware.abstract_middleware import AbstractMiddleware
8
+ from wexample_cli.middleware.abstract_middleware import AbstractMiddleware
9
9
 
10
10
 
11
11
  class PythonAddonManager(AbstractAddonManager):
@@ -2,12 +2,12 @@ from __future__ import annotations
2
2
 
3
3
  from typing import TYPE_CHECKING
4
4
 
5
+ from wexample_cli.decorator.command import command
5
6
  from wexample_wex_core.const.globals import COMMAND_TYPE_SERVICE
6
- from wexample_wex_core.decorator.command import command
7
7
 
8
8
  if TYPE_CHECKING:
9
+ from wexample_cli.context.execution_context import ExecutionContext
9
10
  from wexample_wex_addon_app.service.app_service import AppService
10
- from wexample_wex_core.context.execution_context import ExecutionContext
11
11
 
12
12
 
13
13
  @command(
@@ -2,12 +2,12 @@ from __future__ import annotations
2
2
 
3
3
  from typing import TYPE_CHECKING
4
4
 
5
+ from wexample_cli.decorator.command import command
5
6
  from wexample_wex_core.const.globals import COMMAND_TYPE_SERVICE
6
- from wexample_wex_core.decorator.command import command
7
7
 
8
8
  if TYPE_CHECKING:
9
+ from wexample_cli.context.execution_context import ExecutionContext
9
10
  from wexample_wex_addon_app.service.app_service import AppService
10
- from wexample_wex_core.context.execution_context import ExecutionContext
11
11
 
12
12
 
13
13
  @command(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wexample-wex-addon-dev-python
3
- Version: 8.6.2
3
+ Version: 8.7.0
4
4
  Summary: Python dev addon for wex
5
5
  Author-Email: weeger <contact@wexample.com>
6
6
  License: MIT
@@ -16,7 +16,7 @@ Requires-Dist: networkx
16
16
  Requires-Dist: pylint
17
17
  Requires-Dist: pyright
18
18
  Requires-Dist: wexample-filestate-python>=6.8.0
19
- Requires-Dist: wexample-wex-addon-app>=19.1.0
19
+ Requires-Dist: wexample-wex-addon-app>=19.2.0
20
20
  Provides-Extra: dev
21
21
  Requires-Dist: pytest; extra == "dev"
22
22
  Requires-Dist: pytest-cov; extra == "dev"
@@ -24,7 +24,7 @@ Description-Content-Type: text/markdown
24
24
 
25
25
  # wex_addon_dev_python
26
26
 
27
- Version: 8.6.2
27
+ Version: 8.7.0
28
28
 
29
29
  Python dev addon for wex
30
30
 
@@ -111,7 +111,7 @@ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the comp
111
111
  - pylint:
112
112
  - pyright:
113
113
  - wexample-filestate-python: >=6.8.0
114
- - wexample-wex-addon-app: >=19.1.0
114
+ - wexample-wex-addon-app: >=19.2.0
115
115
 
116
116
  ## Versioning & Compatibility Policy
117
117
 
@@ -1,23 +1,23 @@
1
- wexample_wex_addon_dev_python-8.6.2.dist-info/METADATA,sha256=el_CQqwPvXtNN9wiWBISuNxHEkA-bOPf-ZuXbv7i668,17250
2
- wexample_wex_addon_dev_python-8.6.2.dist-info/WHEEL,sha256=Z36eTX6lG3PITRleSd5hAZHCcz52yg3c0JQVxKBbLW0,90
3
- wexample_wex_addon_dev_python-8.6.2.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
1
+ wexample_wex_addon_dev_python-8.7.0.dist-info/METADATA,sha256=w8brtdtYogAvgT781mSbFWmDsmxteD1i6fUEoQrbOQ0,17250
2
+ wexample_wex_addon_dev_python-8.7.0.dist-info/WHEEL,sha256=Z36eTX6lG3PITRleSd5hAZHCcz52yg3c0JQVxKBbLW0,90
3
+ wexample_wex_addon_dev_python-8.7.0.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
4
4
  wexample_wex_addon_dev_python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  wexample_wex_addon_dev_python/__pycache__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  wexample_wex_addon_dev_python/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  wexample_wex_addon_dev_python/commands/code/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- wexample_wex_addon_dev_python/commands/code/check.py,sha256=Bm5ON0UA7QmFTfO70QkfkqjzpGJu3fAw3tQjzdxbW7I,3404
8
+ wexample_wex_addon_dev_python/commands/code/check.py,sha256=JKBYO3mKvlNbCjlipRqaxOa5z-Z-KSOhv4y6ADMiSQQ,3374
9
9
  wexample_wex_addon_dev_python/commands/code/check/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
10
  wexample_wex_addon_dev_python/commands/code/check/mypy.py,sha256=hZ1taOAofaFgqhtbHLXA14-4cFkVcw6QUi9PmpbEKuk,1401
11
- wexample_wex_addon_dev_python/commands/code/check/pylint.py,sha256=cSnirIVrMH9-_ETAiIVdjCvHQWcNJzCwwAfvcxNBodM,3328
11
+ wexample_wex_addon_dev_python/commands/code/check/pylint.py,sha256=tmtpKWjn3h4auNybYVtiloHjHGlS0BiYjUo9GZTogpE,3323
12
12
  wexample_wex_addon_dev_python/commands/code/check/pyright.py,sha256=jCKZxQ5Ln2Vh1QlhKqz3i0djnQwWbNHzDcttu41jhsI,3619
13
- wexample_wex_addon_dev_python/commands/code/format.py,sha256=7HnXLl2-b_ZYsuj45wDr1ue9AL7g7gOo12fLkV1dilE,2530
13
+ wexample_wex_addon_dev_python/commands/code/format.py,sha256=ufQzhrW05GH1OuBWxbsJKpvEQtu3yeJ0d9QsTqrlQcU,2515
14
14
  wexample_wex_addon_dev_python/commands/code/format/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
15
15
  wexample_wex_addon_dev_python/commands/code/format/black.py,sha256=wo3BEODFD6BUrmnfheESMyLppLPwtvcgkOVfvHWdAZs,1462
16
16
  wexample_wex_addon_dev_python/commands/code/format/isort.py,sha256=pRYYPZWFza6e_HgKYpYplzV5hwJvbM3NNJ_-A3x1yV8,1540
17
17
  wexample_wex_addon_dev_python/commands/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
18
  wexample_wex_addon_dev_python/commands/examples/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
19
  wexample_wex_addon_dev_python/commands/examples/utils/some_example_type.py,sha256=zusGlLOLkt2EpPFk38FIRA6d_5Q92Y7-TLj8ofHhQk0,121
20
- wexample_wex_addon_dev_python/commands/examples/validate.py,sha256=IgUHNpkdc_Z76HGDWmCvztP7B3ars0Cu2Yknq9MGt0o,752
20
+ wexample_wex_addon_dev_python/commands/examples/validate.py,sha256=aMRqL3R7U-OLsdQUjg5WA9nrx7_Jf9V0NRf2inJy70w,742
21
21
  wexample_wex_addon_dev_python/commands/release/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
22
  wexample_wex_addon_dev_python/config_value/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
23
  wexample_wex_addon_dev_python/config_value/__pycache__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -36,7 +36,7 @@ wexample_wex_addon_dev_python/middleware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5
36
36
  wexample_wex_addon_dev_python/middleware/__pycache__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
37
  wexample_wex_addon_dev_python/middleware/each_python_file_middleware.py,sha256=UzNEpedCYf31aNONFl0SuSJnoXRzhJhgEiTCaPark6E,2311
38
38
  wexample_wex_addon_dev_python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
- wexample_wex_addon_dev_python/python_addon_manager.py,sha256=iIpn77H4aw9Q0PBtb5BrbjRJMoXXjD6rLsFu7oZ-Ykw,1063
39
+ wexample_wex_addon_dev_python/python_addon_manager.py,sha256=yD7ivtXKhCuP94PG9R7aHoOWAJMPQrUzrZcuXDqDs28,1058
40
40
  wexample_wex_addon_dev_python/resources/.wex.yml,sha256=JdIF6nGkFcfi76yZYGlXxeWfOK4eAUSV_gAn6i3hk2w,32
41
41
  wexample_wex_addon_dev_python/resources/docker/Dockerfile.python-profiling,sha256=5ujzXfWNN2nv8qQzCLel6dlOwLQ1XhIGZuqplCNB_vQ,290
42
42
  wexample_wex_addon_dev_python/resources/package_publish_gitlab.yml,sha256=WVMj-DeFedQak5s5FraEnM1Rx1-ut4KgPodvAVv25ZM,304
@@ -46,8 +46,8 @@ wexample_wex_addon_dev_python/services/python/__init__.py,sha256=47DEQpj8HBSa-_T
46
46
  wexample_wex_addon_dev_python/services/python/app_service.py,sha256=OeM7f-IHm7lfS2graCBVAjjqxK_lEiQRmfl9mSEqoP0,2272
47
47
  wexample_wex_addon_dev_python/services/python/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
48
  wexample_wex_addon_dev_python/services/python/commands/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
- wexample_wex_addon_dev_python/services/python/commands/service/install.py,sha256=gqGfT9mbdutBfIiLKAqJLZuSc4n0YR1huANC9sCoMdA,1590
50
- wexample_wex_addon_dev_python/services/python/commands/service/setup.py,sha256=97YjkfIBOin4BSdLgToaTC8QU291Xyqvip4rbk4mS6w,1951
49
+ wexample_wex_addon_dev_python/services/python/commands/service/install.py,sha256=RQL2O9_YzNMxgdT4BEa3DuCZzuCIr0Tmd0nrcEQOb_c,1580
50
+ wexample_wex_addon_dev_python/services/python/commands/service/setup.py,sha256=mKrBeHzxYayDSu9ySmbLy9W4U7DY8m0OQ6Or0JeIsps,1941
51
51
  wexample_wex_addon_dev_python/services/python/docker/.wex.yml,sha256=JdIF6nGkFcfi76yZYGlXxeWfOK4eAUSV_gAn6i3hk2w,32
52
52
  wexample_wex_addon_dev_python/services/python/docker/docker-compose.yml,sha256=zr9jm99KXyhOe1RZJ1nxgwqbi62xTXClvyhtA9jAAFc,463
53
53
  wexample_wex_addon_dev_python/services/python/samples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -65,4 +65,4 @@ wexample_wex_addon_dev_python/workdir/mixin/with_profiling_python_workdir_mixin.
65
65
  wexample_wex_addon_dev_python/workdir/python_package_workdir.py,sha256=WQnVSSOixv_fl124DX0jswGPTJ3xMi4QpGPskVafyUc,19092
66
66
  wexample_wex_addon_dev_python/workdir/python_packages_suite_workdir.py,sha256=ICHHewLpsXiheYzGDEahphBryH98ZVezWzSAy6A5w5I,2874
67
67
  wexample_wex_addon_dev_python/workdir/python_workdir.py,sha256=_HeBe2iSSVjpf5JhGIvEFUTV_3LCVSEpF6ZS4oobBn8,20676
68
- wexample_wex_addon_dev_python-8.6.2.dist-info/RECORD,,
68
+ wexample_wex_addon_dev_python-8.7.0.dist-info/RECORD,,