Metadata-Version: 2.4
Name: package-tree
Version: 0.1.0
Summary: Graph of python package dependencies
Author-email: Alain Delplanque <alaindelplanque@mailoo.org>
License: MIT
Project-URL: Homepage, https://github.com/adelplanque/package-tree
Project-URL: Bug Tracker, https://github.com/adelplanque/package-tree/issues
Keywords: graph,dependencies
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: packaging
Dynamic: license-file

# package-tree

`package-tree` is a command-line tool that builds a dependency graph
of the Python packages installed in the current environment.

It inspects installed distributions and generates a Graphviz graph
using the `dot` command.

## Exemple

![Exemple](graph.png)

---

## Requirements

- Python ≥ 3.8
- Graphviz (`dot` command available in PATH)

---

## Example

```bash
package-tree -f svg graph.svg
```

See `package-tree --help` for more details.
