Metadata-Version: 2.4
Name: dccpath
Version: 0.1.3
Summary: Utility library for locating common DCC (Digital Content Creation) software executables
Project-URL: Repository, https://git.hwanimation.tech/hwanimationtech/dcc-tools/dccpath
Author-email: Henrik Wilhelmsen <henrik@hwanimation.tech>
Maintainer-email: Henrik Wilhelmsen <henrik@hwanimation.tech>
License-Expression: MPL-2.0
License-File: LICENSE
Keywords: Blender,DCC,Maya,MotionBuilder
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# dccpath

Small utility library for locating common DCC (Digital Content Creation) software executables

Currently supported DCCs:

- Autodesk Maya
- Autodesk MotionBuilder
- Blender

```python
from dccpath import get_blender, get_mayapy

blender = get_blender(version="4.4")
mayapy = get_mayapy(version="2025")
```

## Development

This project uses uv for development, to initialize the project and sync all dependencies run:

```sh
uv sync --dev
```
