Metadata-Version: 2.4
Name: alembic3d
Version: 1.8.12
Summary: Unofficial PyAlembic bindings for the Alembic 3D interchange format (import name: alembic3d; not affiliated with the Alembic project)
License-Expression: BSD-3-Clause
License-File: LICENSE.txt
License-File: licenses/Imath-LICENSE.md
License-File: THIRD-PARTY.txt
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: C++
Classifier: Topic :: Multimedia :: Graphics :: 3D Modeling
Project-URL: Homepage, https://github.com/redd76/alembic-3d
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# alembic3d

Python bindings (PyAlembic) for the [Alembic](https://github.com/alembic/alembic)
3D interchange format, packaged as pip-installable wheels under the name
**`alembic3d`** so they do not clash with the unrelated
[`alembic`](https://pypi.org/project/alembic/) database-migration tool.

```python
pip install alembic3d
```

```python
import alembic3d
from alembic3d.Abc import *
from alembic3d.AbcGeom import *
import imath          # PyImath, bundled inside the wheel
```

The import name is `alembic3d`; otherwise the API matches upstream PyAlembic
(`from alembic3d.Abc import ...`, `from alembic3d.AbcGeom import ...`).

## Not affiliated with the Alembic project

This is an **unofficial** repackaging maintained by a third party. It is **not
affiliated with, endorsed by, or supported by** the Alembic project,
Industrial Light & Magic, or Sony Pictures Imageworks. Report packaging issues
to this fork's repository, not to upstream Alembic.

## License

Alembic is licensed under BSD-3-Clause (see `LICENSE.txt`). Each wheel also
bundles the following components and reproduces their licenses in the wheel's
`.dist-info/licenses/`:

- **Imath / PyImath** — BSD-3-Clause (`licenses/Imath-LICENSE.md`)
- **Boost.Python** — Boost Software License 1.0 (`THIRD-PARTY.txt`)

Platforms: Windows (x86_64), Linux (manylinux, x86_64), macOS (arm64).
Python: CPython 3.10–3.13.
