Metadata-Version: 2.4
Name: downsorter
Version: 0.1.0
Summary: Organize files by extension into category folders from the command line.
Author: Your Name
License: MIT
Keywords: downloads,file sorting,organization,cli
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Environment :: Console
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Downsorter

A simple Python CLI tool to organize files in a folder by extension into category folders.

## Install

```bash
pip install .
```

## Usage

Preview mode:

```bash
downsorter --folder "C:\path\to\folder"
```

Apply mode:

```bash
downsorter --folder "C:\path\to\folder" --apply
```

## Options

- `--folder`: Folder to organize (defaults to your Downloads folder)
- `--apply`: Actually move files
- `--min-age-days`: Only move files at least this many days old
- `--log-file`: CSV file to write move logs
