Metadata-Version: 2.4
Name: sortwise
Version: 0.1.0
Summary: AI-powered file organization based on content, not just extensions
Author: sortwise Authors
License: Apache-2.0
Project-URL: Homepage, https://github.com/sortwise/sortwise
Project-URL: Documentation, https://github.com/sortwise/sortwise#readme
Project-URL: Repository, https://github.com/sortwise/sortwise
Project-URL: Issues, https://github.com/sortwise/sortwise/issues
Keywords: file,organizer,ai,classification,pdf,automation,ml,document
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Desktop Environment :: File Managers
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: click>=8.0
Requires-Dist: rich>=13.0
Requires-Dist: pypdf>=3.0
Requires-Dist: Pillow>=10.0
Requires-Dist: pymupdf>=1.23.0
Requires-Dist: transformers>=4.30.0
Requires-Dist: torch>=2.0.0
Requires-Dist: requests>=2.28.0
Provides-Extra: watch
Requires-Dist: watchdog>=3.0; extra == "watch"
Provides-Extra: dashboard
Requires-Dist: fastapi>=0.100; extra == "dashboard"
Requires-Dist: uvicorn>=0.23; extra == "dashboard"
Provides-Extra: ollama
Provides-Extra: openai
Requires-Dist: openai>=1.0; extra == "openai"
Provides-Extra: gemini
Requires-Dist: google-genai>=0.3; extra == "gemini"
Provides-Extra: claude
Requires-Dist: anthropic>=0.18; extra == "claude"
Provides-Extra: llm
Requires-Dist: openai>=1.0; extra == "llm"
Requires-Dist: google-genai>=0.3; extra == "llm"
Requires-Dist: anthropic>=0.18; extra == "llm"
Provides-Extra: all
Requires-Dist: sortwise[dashboard,llm,watch]; extra == "all"
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0; extra == "dev"
Requires-Dist: ruff>=0.1.0; extra == "dev"

﻿# sortwise

AI-powered file organization based on content, not just extensions.

## Installation
```bash
pip install sortwise[all]
```

## Quick Start
```bash
# Preview what would happen (dry run)
sortwise run ~/Downloads

# Actually move files
sortwise run ~/Downloads --commit

# Undo last operation
sortwise undo
```

## Features

- **Content-aware classification**  PDFs classified by content (invoices, receipts, resumes)
- **Smart image detection**  Distinguishes photos from screenshots using EXIF data
- **Dry-run by default**  Preview before committing
- **Full undo support**  Revert any operation
- **Optional AI enhancement**  Use Ollama for low-confidence files

## License

Apache 2.0
