Metadata-Version: 2.1
Name: verisnap
Version: 0.1.0
Summary: A tool to create directory snapshots with size-based file copying or symlinking
Home-page: https://github.com/Chirobocea/verisnap
Author: Mihail Chirobocea
Author-email: mihail.chirobocea@s.unibuc.ro
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: winshell>=0.6
Requires-Dist: pywin32>=306

# VeriSnap

A Python tool to create snapshots of directories with selective file copying or symbolic linking based on size thresholds.

## Installation

```bash
pip install snapshot_tool
```

## Usage
```
from snapshot_tool import make_snapshot

source_dir = '/path/to/source'
snapshots_dir = '/path/to/snapshots'
threshold = 50  # MB

make_snapshot(source_dir, snapshots_dir, threshold)
```
