Metadata-Version: 2.4
Name: bblocks-datacommons-tools
Version: 1.0.0a2
Summary: Deprecated: renamed to dcp-tools. Installs dcp-tools and redirects imports.
Author: ONE Campaign
License-Expression: MIT
License-File: LICENSE
Classifier: Development Status :: 7 - Inactive
Classifier: Operating System :: OS Independent
Requires-Dist: dcp-tools>=1.0.0a2
Requires-Python: >=3.13
Project-URL: repository, https://github.com/ONEcampaign/dcp-tools
Project-URL: documentation, https://pypi.org/project/dcp-tools/
Project-URL: homepage, https://github.com/ONEcampaign/dcp-tools
Project-URL: issues, https://github.com/ONEcampaign/dcp-tools/issues
Description-Content-Type: text/markdown

# bblocks-datacommons-tools (deprecated)

This package has been renamed to [**dcp-tools**](https://pypi.org/project/dcp-tools/).

Installing `bblocks-datacommons-tools` pulls in `dcp-tools` and keeps the old
import path working: `import bblocks.datacommons_tools` (and any submodule)
transparently redirects to `dcp_tools` while emitting a `DeprecationWarning`.

Migrate at your convenience:

```python
# old
from bblocks.datacommons_tools import CustomDataManager

# new
from dcp_tools import CustomDataManager
```
