Skip to content

Commit 36ff520

Browse files
authored
Add full keyword to opt deps (#3454)
1 parent 30760e2 commit 36ff520

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,12 @@ Python 3.8+ is supported.
5151

5252
`cfn-lint` has optional dependencies based on certain features you may need.
5353

54+
* `pip install cfn-lint[full]` for installing all the optional dependencies. This will install all the dependencies for graph, junit, and sarif.
5455
* `pip install cfn-lint[graph]` for installing `pydot` to draw and output template graphs
5556
* `pip install cfn-lint[junit]` for installing the packages to output the `junit` format
5657
* `pip install cfn-lint[sarif]` for installing the packages to output the `sarif` format
5758

59+
5860
### Homebrew (macOS)
5961

6062
`brew install cfn-lint`

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,12 @@ sarif = [
5656
"jschema_to_python~=1.2.3",
5757
"sarif-om~=1.0.4",
5858
]
59+
full = [
60+
"junit-xml~=1.9",
61+
"jschema_to_python~=1.2.3",
62+
"sarif-om~=1.0.4",
63+
"pydot"
64+
]
5965

6066
[project.scripts]
6167
cfn-lint = "cfnlint.runner:main"

0 commit comments

Comments
 (0)