Metadata-Version: 2.4
Name: code-viz-cli
Version: 0.1.0
Summary: Local desktop dependency graph viewer for code repositories.
Author: Anj
Keywords: dependency-graph,code-visualization,desktop,cli
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: X11 Applications :: Qt
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Build Tools
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: PySide6>=6.6

# code-viz

Local desktop dependency graph viewer for code repositories.

## Install

```sh
python3 -m pip install code-viz
```

## Usage

From a repository or project directory:

```sh
code-viz init
```

The command scans the current working directory, builds a file dependency graph,
and opens a native desktop window.

## Features

- Native desktop dependency graph viewer.
- Dark and light themes.
- Mouse wheel zoom and mouse-drag canvas panning.
- Draggable graph nodes.
- Git working-tree impact coloring for changed and affected files.
- Local file-purpose and change-impact insight for selected files.
- SVG export into the scanned project directory.
- Optional README embedding for exported graphs.

## Local Development

```sh
python3 -m pip install -e .
```

```sh
python3 -m code_viz init
```
