Skip to content

Commit

Permalink
Add full keyword to opt deps (#3454)
Browse files Browse the repository at this point in the history
  • Loading branch information
kddejong authored Jul 1, 2024
1 parent 30760e2 commit 36ff520
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,12 @@ Python 3.8+ is supported.

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

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


### Homebrew (macOS)

`brew install cfn-lint`
Expand Down
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,12 @@ sarif = [
"jschema_to_python~=1.2.3",
"sarif-om~=1.0.4",
]
full = [
"junit-xml~=1.9",
"jschema_to_python~=1.2.3",
"sarif-om~=1.0.4",
"pydot"
]

[project.scripts]
cfn-lint = "cfnlint.runner:main"
Expand Down

0 comments on commit 36ff520

Please sign in to comment.