Metadata-Version: 2.4
Name: nui-lambda-shared-utils
Version: 2.0.0
Summary: Redirect package: use nui-python-shared-utils instead
Author-email: NUI Markets <develop@nuimarkets.com>
Project-URL: Homepage, https://github.com/nuimarkets/nui-python-shared-utils
Project-URL: Bug Tracker, https://github.com/nuimarkets/nui-python-shared-utils/issues
Classifier: Development Status :: 7 - Inactive
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: nui-python-shared-utils>=1.2.3
Provides-Extra: elasticsearch
Requires-Dist: nui-python-shared-utils[elasticsearch]; extra == "elasticsearch"
Provides-Extra: database
Requires-Dist: nui-python-shared-utils[database]; extra == "database"
Provides-Extra: slack
Requires-Dist: nui-python-shared-utils[slack]; extra == "slack"
Provides-Extra: powertools
Requires-Dist: nui-python-shared-utils[powertools]; extra == "powertools"
Provides-Extra: jwt
Requires-Dist: nui-python-shared-utils[jwt]; extra == "jwt"
Provides-Extra: all
Requires-Dist: nui-python-shared-utils[all]; extra == "all"
Provides-Extra: dev
Requires-Dist: nui-python-shared-utils[dev]; extra == "dev"

# nui-lambda-shared-utils (redirect)

This package has been renamed to **[nui-python-shared-utils](https://pypi.org/project/nui-python-shared-utils/)**.

Install the new package directly:

```bash
pip install nui-python-shared-utils
```

This redirect package depends on `nui-python-shared-utils` and re-exports
`nui_lambda_shared_utils` for backwards compatibility. Existing code continues
to work without changes.

To migrate, update your `requirements.txt`:

```diff
- nui-lambda-shared-utils[powertools]
+ nui-python-shared-utils[powertools]
```

Import names remain unchanged during the transition period:

```python
# Both work
from nui_lambda_shared_utils import SlackClient
```
