Metadata-Version: 2.4
Name: lagrange-open
Version: 999.0.0
Summary: DEPRECATED: This package has been renamed to adobe-lagrange
Project-URL: documentation, https://opensource.adobe.com/lagrange-docs
Project-URL: repository, https://github.com/adobe/lagrange
Maintainer-email: Lagrange Core Team <lagrange-core@adobe.com>
License-Expression: Apache-2.0
Classifier: Development Status :: 7 - Inactive
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: C++
Classifier: Programming Language :: Python :: 3 :: Only
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 :: Python :: 3.14
Classifier: Topic :: Multimedia :: Graphics :: 3D Modeling
Requires-Python: >=3.10
Requires-Dist: adobe-lagrange
Description-Content-Type: text/markdown

# lagrange-open → adobe-lagrange

**⚠️ This package has been renamed to `adobe-lagrange`**

## What happened?

We have renamed the `lagrange-open` package to `adobe-lagrange` to simplify dependency management
with internal releases, better reflect ownership of the project, and avoid confusion with existing
PyPI packages.

## What should I do?

Update your dependencies to use the new package name:

```bash
uv pip uninstall lagrange-open
uv pip install adobe-lagrange
```

### Update your dependency files:

**pyproject.toml:**
```diff
dependencies = [
-    "lagrange-open",
+    "adobe-lagrange",
]
```

## Why does this package still exist?

This `lagrange-open` package now serves as a redirect/compatibility shim. When installed, it:

1. Displays a deprecation warning
2. Automatically installs `adobe-lagrange` as a dependency

This allows existing projects to continue working while giving you time to update your dependencies.
