Metadata-Version: 2.4
Name: blenderex-5
Version: 0.1.0
Summary: CLI to locate and run blender 5
Author: Henrik Wilhelmsen
Author-email: Henrik Wilhelmsen <henrik@hwanimation.tech>
License-Expression: MPL-2.0
License-File: LICENSE
Requires-Dist: dccex
Requires-Python: >=3.11
Project-URL: Repository, https://git.hwanimation.tech/hwanimationtech/dccex
Description-Content-Type: text/markdown

# blenderex

A CLI wrapper for blender, adding a command that will locate and run the blender executable. This package has been auto-generated as part of the [dccex project](https://git.hwanimation.tech/hwanimationtech/dccex) to add the versioned blender specific command.

It adds the following commands: `blender5`.

All command-line arguments are passed through to the DCC executable.

## Usage

Install it permanently with `uv tool`:

```sh
uv tool install blenderex-5
blender5
```

Run it once with `uvx` without installing it:

```sh
uvx --from blenderex-5 blender5
```

Or add the package as a dependency and run it from Python:

```sh
uv add blenderex-5
```

```python
from blenderex_5 import blender5

blender5()
```

The requested blender version must be installed locally.

For more information, see the [dccex project](https://git.hwanimation.tech/hwanimationtech/dccex).
