1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
Source: python-pipdeptree
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Andreas Tille <tille@debian.org>, Nilesh Patra <npatra974@gmail.com>
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.
|