Metadata-Version: 2.3
Name: dsz
Version: 0.1.0
Summary: Show disk usage of a directory's immediate children.
Author: Kyle O'Malley
Author-email: Kyle O'Malley <j.kyle.omalley@gmail.com>
Requires-Python: >=3.14
Description-Content-Type: text/markdown

# dsz

Show disk usage of a directory's immediate children, sorted by size.

## Installation

```
uv tool install dsz
```

## Usage

```
dsz [PATH] [--min-percent N]
```

- `PATH` — directory to scan (default: current directory)
- `--min-percent N` — collapse entries below N% of the total into a single `<other>` line (default: 1.0)

## Example

```
$ dsz ~
/home/user    24.2 GB
   18.2 GB  75% Videos               ###############
    4.1 GB  17% Documents            ###
    1.6 GB   7% Downloads            #
  312.4 MB   1% <other 5>
```

Hidden entries (dot files and directories) and symlinks are excluded from all counts. Drill into a subdirectory by passing it as `PATH`.
