You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
warning control: suppress will show warnings but return 0 whether or not they are present; silence will not show warnings at all and always return 0; fail will show warnings and return 1 if any are present (default:
235
236
suppress)
236
237
237
238
select:
238
239
choose what to render
239
240
240
241
--python PYTHON Python interpreter to inspect. With "auto", it attempts to detect your virtual environment and fails if it can't. (default: /usr/local/bin/python)
241
-
--path PATH Passes a path used to restrict where packages should be looked for (can be used multiple times) (default: None)
242
+
--path PATH passes a path used to restrict where packages should be looked for (can be used multiple times) (default: None)
242
243
-p P, --packages P comma separated list of packages to show - wildcards are supported, like 'somepackage.*' (default: None)
243
244
-e P, --exclude P comma separated list of packages to not show - wildcards are supported, like 'somepackage.*'. (cannot combine with -p or -a) (default: None)
245
+
--exclude-dependencies
246
+
used along with --exclude to also exclude dependencies of packages (default: False)
244
247
-l, --local-only if in a virtualenv that has global access do not show globally installed packages (default: False)
245
248
-u, --user-only only show installations in the user site dir (default: False)
246
249
247
250
render:
248
-
choose how to render the dependency tree (by default will use text mode)
251
+
choose how to render the dependency tree
249
252
250
-
-f, --freeze print names so as to write freeze files (default: False)
253
+
-f, --freeze (Deprecated, use -o) print names so as to write freeze files (default: False)
251
254
--encoding E the encoding to use when writing to the output (default: utf-8)
252
255
-a, --all list all deps at top level (text and freeze render only) (default: False)
253
256
-d D, --depth D limit the depth of the tree (text and freeze render only) (default: inf)
254
257
-r, --reverse render the dependency tree in the reverse fashion ie. the sub-dependencies are listed with the list of packages that need them under them (default: False)
255
258
--license list the license(s) of a package (text render only) (default: False)
256
-
-j, --json raw JSON - this will yield output that may be used by external tools (default: False)
257
-
--json-tree nested JSON - mimics the text format layout (default: False)
--graph-output FMT Graphviz rendering with the value being the graphviz output e.g.: dot, jpeg, pdf, png, svg (default: None)
259
+
-j, --json (Deprecated, use -o) raw JSON - this will yield output that may be used by external tools (default: False)
260
+
--json-tree (Deprecated, use -o) nested JSON - mimics the text format layout (default: False)
261
+
--mermaid (Deprecated, use -o) https://mermaid.js.org flow diagram (default: False)
262
+
--graph-output FMT (Deprecated, use -o) Graphviz rendering with the value being the graphviz output e.g.: dot, jpeg, pdf, png, svg (default: None)
263
+
-o FMT, --output FMT
264
+
specify how to render the tree; supported formats: freeze, json, json-tree, mermaid, text, or graphviz-* (e.g. graphviz-png, graphviz-dot) (default: text)
0 commit comments