Metadata-Version: 2.4
Name: videolab
Version: 0.4.0
Summary: A CLI for video processing.
Author: Kian-Meng, Ang
License: AGPL-3.0-or-later
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: av>=15.1.0
Requires-Dist: Pillow>=10.4.0
Requires-Dist: numpy>=1.26.0
Requires-Dist: tqdm>=4.66.0
Provides-Extra: dev
Requires-Dist: nox; extra == "dev"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Provides-Extra: lint
Requires-Dist: mypy; extra == "lint"
Requires-Dist: pre-commit; extra == "lint"
Dynamic: license-file

# videolab

A CLI for video processing.

## Installation

You can install videolab from source.

1.  Clone the repository:

    ```bash
    git clone https://github.com/kianmeng/videolab.git
    cd videolab
    ```

2.  Create a virtual environment and install the package:
    ```bash
    uv venv
    source .venv/bin/activate
    uv pip install -e .
    ```

## Usage

Once installed, you can use the `videolab` command.

To see the help message:

```bash
videolab --help
```

To see environment information:

```bash
videolab env
```

## Contributing

Contributions are welcome! Please see the [CONTRIBUTING.md](CONTRIBUTING.md) file for details on how to set up your development environment and submit pull requests.

## License

This project is licensed under the GNU Affero General Public License v3.0 or later. See the [LICENSE.md](LICENSE.md) file for details.
