pan-scm-cli 0.2.0__tar.gz → 0.2.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.
- {pan_scm_cli-0.2.0 → pan_scm_cli-0.2.1}/PKG-INFO +2 -2
- {pan_scm_cli-0.2.0 → pan_scm_cli-0.2.1}/pyproject.toml +2 -2
- {pan_scm_cli-0.2.0 → pan_scm_cli-0.2.1}/LICENSE +0 -0
- {pan_scm_cli-0.2.0 → pan_scm_cli-0.2.1}/README.md +0 -0
- {pan_scm_cli-0.2.0 → pan_scm_cli-0.2.1}/src/scm_cli/__init__.py +0 -0
- {pan_scm_cli-0.2.0 → pan_scm_cli-0.2.1}/src/scm_cli/commands/__init__.py +0 -0
- {pan_scm_cli-0.2.0 → pan_scm_cli-0.2.1}/src/scm_cli/commands/deployment.py +0 -0
- {pan_scm_cli-0.2.0 → pan_scm_cli-0.2.1}/src/scm_cli/commands/network.py +0 -0
- {pan_scm_cli-0.2.0 → pan_scm_cli-0.2.1}/src/scm_cli/commands/objects.py +0 -0
- {pan_scm_cli-0.2.0 → pan_scm_cli-0.2.1}/src/scm_cli/commands/security.py +0 -0
- {pan_scm_cli-0.2.0 → pan_scm_cli-0.2.1}/src/scm_cli/main.py +0 -0
- {pan_scm_cli-0.2.0 → pan_scm_cli-0.2.1}/src/scm_cli/tests/__init__.py +0 -0
- {pan_scm_cli-0.2.0 → pan_scm_cli-0.2.1}/src/scm_cli/utils/__init__.py +0 -0
- {pan_scm_cli-0.2.0 → pan_scm_cli-0.2.1}/src/scm_cli/utils/config.py +0 -0
- {pan_scm_cli-0.2.0 → pan_scm_cli-0.2.1}/src/scm_cli/utils/sdk_client.py +0 -0
- {pan_scm_cli-0.2.0 → pan_scm_cli-0.2.1}/src/scm_cli/utils/validators.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pan-scm-cli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Network Engineer-friendly CLI for Palo Alto Networks Security Content Management
|
|
5
5
|
Author: Calvin Remsburg
|
|
6
6
|
Author-email: dev@cdot.io
|
|
@@ -14,7 +14,7 @@ Requires-Dist: dynaconf (>=3.2.10,<4.0.0)
|
|
|
14
14
|
Requires-Dist: pan-scm-sdk (==0.3.22)
|
|
15
15
|
Requires-Dist: pydantic (>=2.7.1,<3.0.0)
|
|
16
16
|
Requires-Dist: pyyaml (>=6.0,<7.0)
|
|
17
|
-
Requires-Dist: typer
|
|
17
|
+
Requires-Dist: typer (==0.15.2)
|
|
18
18
|
Description-Content-Type: text/markdown
|
|
19
19
|
|
|
20
20
|
# Strata Cloud Manager CLI
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "pan-scm-cli"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.1"
|
|
4
4
|
description = "Network Engineer-friendly CLI for Palo Alto Networks Security Content Management"
|
|
5
5
|
authors = ["Calvin Remsburg <dev@cdot.io>"]
|
|
6
6
|
readme = "README.md"
|
|
@@ -8,7 +8,7 @@ packages = [{include = "scm_cli", from = "src"}]
|
|
|
8
8
|
|
|
9
9
|
[tool.poetry.dependencies]
|
|
10
10
|
python = ">=3.10,<3.14"
|
|
11
|
-
typer =
|
|
11
|
+
typer = "0.15.2"
|
|
12
12
|
pyyaml = "^6.0"
|
|
13
13
|
pydantic = "^2.7.1"
|
|
14
14
|
pan-scm-sdk = "0.3.22"
|
|
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
|