hexastack-cli 0.3.0__tar.gz → 0.4.0__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.
- {hexastack_cli-0.3.0 → hexastack_cli-0.4.0}/PKG-INFO +1 -1
- {hexastack_cli-0.3.0 → hexastack_cli-0.4.0}/pyproject.toml +12 -1
- {hexastack_cli-0.3.0 → hexastack_cli-0.4.0}/pyproject.toml.orig +12 -1
- {hexastack_cli-0.3.0 → hexastack_cli-0.4.0}/README.md +0 -0
- {hexastack_cli-0.3.0 → hexastack_cli-0.4.0}/src/hexastack_cli/__init__.py +0 -0
- {hexastack_cli-0.3.0 → hexastack_cli-0.4.0}/src/hexastack_cli/adapters/__init__.py +0 -0
- {hexastack_cli-0.3.0 → hexastack_cli-0.4.0}/src/hexastack_cli/adapters/presenter.py +0 -0
- {hexastack_cli-0.3.0 → hexastack_cli-0.4.0}/src/hexastack_cli/adapters/routing.py +0 -0
- {hexastack_cli-0.3.0 → hexastack_cli-0.4.0}/src/hexastack_cli/domain/__init__.py +0 -0
- {hexastack_cli-0.3.0 → hexastack_cli-0.4.0}/src/hexastack_cli/domain/config.py +0 -0
- {hexastack_cli-0.3.0 → hexastack_cli-0.4.0}/src/hexastack_cli/infra/__init__.py +0 -0
- {hexastack_cli-0.3.0 → hexastack_cli-0.4.0}/src/hexastack_cli/infra/app.py +0 -0
- {hexastack_cli-0.3.0 → hexastack_cli-0.4.0}/src/hexastack_cli/infra/autodiscovery.py +0 -0
- {hexastack_cli-0.3.0 → hexastack_cli-0.4.0}/src/hexastack_cli/infra/bootstrap.py +0 -0
- {hexastack_cli-0.3.0 → hexastack_cli-0.4.0}/src/hexastack_cli/infra/config.py +0 -0
- {hexastack_cli-0.3.0 → hexastack_cli-0.4.0}/src/hexastack_cli/infra/decorators.py +0 -0
- {hexastack_cli-0.3.0 → hexastack_cli-0.4.0}/src/hexastack_cli/py.typed +0 -0
- {hexastack_cli-0.3.0 → hexastack_cli-0.4.0}/src/hexastack_cli/testing/__init__.py +0 -0
- {hexastack_cli-0.3.0 → hexastack_cli-0.4.0}/src/hexastack_cli/testing/events.py +0 -0
- {hexastack_cli-0.3.0 → hexastack_cli-0.4.0}/src/hexastack_cli/testing/narrator.py +0 -0
- {hexastack_cli-0.3.0 → hexastack_cli-0.4.0}/src/hexastack_cli/testing/terminal.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "hexastack-cli"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.4.0"
|
|
4
4
|
description = "Hexastack CLI presentation adapter with Typer and Rich"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "Apache-2.0"
|
|
@@ -42,6 +42,17 @@ containers = ["hexastack_cli"]
|
|
|
42
42
|
layers = [
|
|
43
43
|
"infra",
|
|
44
44
|
"adapters",
|
|
45
|
+
"domain",
|
|
46
|
+
]
|
|
47
|
+
|
|
48
|
+
[[tool.importlinter.contracts]]
|
|
49
|
+
name = "Forbidden imports for domain"
|
|
50
|
+
type = "forbidden"
|
|
51
|
+
source_modules = ["hexastack_cli.domain"]
|
|
52
|
+
forbidden_modules = [
|
|
53
|
+
"hexastack_cli.adapters",
|
|
54
|
+
"hexastack_cli.infra",
|
|
55
|
+
"hexastack_cli.testing",
|
|
45
56
|
]
|
|
46
57
|
|
|
47
58
|
[[tool.importlinter.contracts]]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "hexastack-cli"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.4.0"
|
|
4
4
|
description = "Hexastack CLI presentation adapter with Typer and Rich"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "Apache-2.0"
|
|
@@ -41,6 +41,17 @@ containers = ["hexastack_cli"]
|
|
|
41
41
|
layers = [
|
|
42
42
|
"infra",
|
|
43
43
|
"adapters",
|
|
44
|
+
"domain",
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
[[tool.importlinter.contracts]]
|
|
48
|
+
name = "Forbidden imports for domain"
|
|
49
|
+
type = "forbidden"
|
|
50
|
+
source_modules = ["hexastack_cli.domain"]
|
|
51
|
+
forbidden_modules = [
|
|
52
|
+
"hexastack_cli.adapters",
|
|
53
|
+
"hexastack_cli.infra",
|
|
54
|
+
"hexastack_cli.testing",
|
|
44
55
|
]
|
|
45
56
|
|
|
46
57
|
[[tool.importlinter.contracts]]
|
|
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
|