Metadata-Version: 2.4
Name: videolab
Version: 0.5.2
Summary: A CLI for video processing.
Author: Kian-Meng, Ang
License: AGPL-3.0-or-later
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: av<16.0.0,>=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"
Requires-Dist: pytest-cov; extra == "test"
Requires-Dist: pytest-randomly; extra == "test"
Requires-Dist: pytest-xdist; extra == "test"
Provides-Extra: lint
Requires-Dist: mypy; extra == "lint"
Requires-Dist: pre-commit; extra == "lint"
Provides-Extra: doc
Requires-Dist: furo; extra == "doc"
Requires-Dist: myst-parser; extra == "doc"
Requires-Dist: sphinx; extra == "doc"
Requires-Dist: sphinx-autobuild; extra == "doc"
Requires-Dist: sphinx-autodoc-typehints; extra == "doc"
Requires-Dist: sphinx-copybutton; extra == "doc"
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](CONTRIBUTING) 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](LICENSE) file for details.
