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
Update CLI usage for --all by moving it to the "render" group (#458)
It makes more sense for it to be in the "render" group as this option moreso affects how the output is rendered. This commit also does the
following:
- Update README.md with our current CLI usage
- Update description of --depth to be more accurate
- Update test_non_host.py to account for `readline` metadata removal in
pypy-3.10.19
--python PYTHON Python interpreter to inspect (default: /usr/local/bin/python)
242
+
--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)
243
243
--path PATH Passes a path used to restrict where packages should be looked for (can be used multiple times) (default: None)
244
244
-p P, --packages P comma separated list of packages to show - wildcards are supported, like 'somepackage.*' (default: None)
245
245
-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)
246
-
-a, --all list all deps at top level (default: False)
247
246
-l, --local-only ifin a virtualenv that has global access do not show globally installed packages (default: False)
248
247
-u, --user-only only show installations in the user site dir (default: False)
249
248
@@ -252,7 +251,8 @@ render:
252
251
253
252
-f, --freeze print names so as to write freeze files (default: False)
254
253
--encoding E the encoding to use when writing to the output (default: utf-8)
255
-
-d D, --depth D limit the depth of the tree (text render only) (default: inf)
254
+
-a, --all list all deps at top level (text and freeze render only) (default: False)
255
+
-d D, --depth D limit the depth of the tree (text and freeze render only) (default: inf)
256
256
-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)
257
257
--license list the license(s) of a package (text render only) (default: False)
258
258
-j, --json raw JSON - this will yield output that may be used by external tools (default: False)
0 commit comments