Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Fix Python example to handle extras in requirements.txt
  • Loading branch information
gomes89 authored Jul 18, 2024
1 parent 2bd29ae commit c5c46d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ Very often, you can get away with `grep`ing the `requirements.txt` file check de

```
cat requirements.txt | grep -v \# \
| sed -E -e 's|([^= ]+)==([^= ]+)|pypi/pypi/-/\1/\2|' -e 's| ||g' \
| sed -E -e 's|([^= ]+)==([^= ]+)|pypi/pypi/-/\1/\2|' -e 's| ||g' -e 's|\[.*\]||g' \
| sort | uniq \
| java -jar /dash-licenses/org.eclipse.dash.licenses-<version>.jar -
```
Expand Down

0 comments on commit c5c46d4

Please sign in to comment.