Metadata-Version: 2.1
Name: folderizer
Version: 0.1.1
Summary: A Python script for file organization
Author: Roy J. Wignarajah
License: Apache-2.0
Project-URL: Homepage, https://github.com/rjwignar/folderizer
Project-URL: Changelog, https://github.com/rjwignar/folderizer/releases
Project-URL: Issues, https://github.com/rjwignar/folderizer/issues
Project-URL: CI, https://github.com/rjwignar/folderizer/actions
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: ruff ; extra == 'dev'
Requires-Dist: mypy ; extra == 'dev'
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'

# folderizer (WIP)

[![PyPI](https://img.shields.io/pypi/v/folderizer.svg)](https://pypi.org/project/folderizer/)
[![Tests](https://github.com/rjwignar/folderizer/actions/workflows/test.yml/badge.svg)](https://github.com/rjwignar/folderizer/actions/workflows/test.yml)
[![Changelog](https://img.shields.io/github/v/release/rjwignar/folderizer?include_prereleases&label=changelog)](https://github.com/rjwignar/folderizer/releases)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/rjwignar/folderizer/blob/main/LICENSE)

A Python script for file organization

## Installation

Install this library using `pip`:
```bash
pip install folderizer
```
## Usage

Usage instructions go here.

## Development

To contribute to this library, first checkout the code. Then create a new virtual environment:
```bash
cd folderizer
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
pip install -e '.[test]'
```
To run the tests:
```bash
pytest
```
