Source: python-pipdeptree Maintainer: Debian Med Packaging Team Uploaders: Andreas Tille , Nilesh Patra Section: python Testsuite: autopkgtest-pkg-python Priority: optional Build-Depends: debhelper-compat (= 13), dh-python, python3-all-dev, python3-setuptools Standards-Version: 4.5.1 Vcs-Browser: https://salsa.debian.org/med-team/python-pipdeptree Vcs-Git: https://salsa.debian.org/med-team/python-pipdeptree.git Homepage: https://github.com/naiquevin/pipdeptree Rules-Requires-Root: no Package: python3-pipdeptree Architecture: any Depends: ${misc:Depends}, ${python3:Depends} Recommends: python3-graphviz Description: display dependency tree of the installed Python 3 packages Pipdeptree is a command line utility for displaying the installed Python packages in form of a dependency tree. It works for packages installed globally on a machine as well as in a virtualenv. Since pip freeze shows all dependencies as a flat list, finding out which are the top level packages and which packages do they depend on requires some effort. It can also be tedious to resolve conflicting dependencies because pip doesn't yet have true dependency resolution (more on this later). This utility tries to solve this problem. . To some extent, this tool is inspired by lein deps :tree command of Leiningen.