Metadata-Version: 2.4
Name: siftout
Version: 0.1
Summary: A simple janitorial tool for cleaning up your workspace
Home-page: https://github.com/Abhishek-Srivatsasa/AegisProject
Author: Abhishek Srivatsasa Guntur
Author-email: gabhisheksrivatsasa@gmail.com
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: summary

# Siftout

A simple janitorial tool for cleaning up your workspace.

## Installation

```bash
pip install siftout
```

## Usage

```python
from siftout import Janitor

# Instantiate the cleaner (can provide extra file extensions if desired)
cleaner = Janitor(extra_patterns=["*.bak"])

# Clean the workspace
stats = cleaner.self_destruct()
print(stats)
```
