Metadata-Version: 2.4
Name: nmdc-api-utilities
Version: 0.7.0
Summary: Deprecated — this package has been renamed to 'nmdc-client'.
License-File: LICENSE
Requires-Dist: nmdc-client>=1,<2
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# nmdc-api-utilities — renamed to `nmdc-client`

This package has been **renamed**. `nmdc-api-utilities` is now a thin
compatibility shim that installs [`nmdc-client`](https://pypi.org/project/nmdc-client/)
and re-exports it under the old import name, emitting a `DeprecationWarning`.

Please migrate:

```bash
pip uninstall nmdc-api-utilities
pip install nmdc-client

# old
from nmdc_api_utilities import BiosampleSearch
# new
from nmdc_client import BiosampleSearch

All development now happens at https://github.com/microbiomedata/nmdc-client.
