Metadata-Version: 2.4
Name: mayaex-2027
Version: 0.1.1
Summary: CLI to locate and run maya 2027
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

# mayaex

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

It adds the following commands: `maya2027`, `mayapy2027`.

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

## Usage

Install it permanently with `uv tool`:

```sh
uv tool install mayaex-2027
maya2027
```

Run it once with `uvx` without installing it:

```sh
uvx --from mayaex-2027 maya2027
```

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

```sh
uv add mayaex-2027
```

```python
from mayaex_2027 import maya

maya()
```

The requested maya version must be installed locally.

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