Metadata-Version: 2.4
Name: tracebloc_package
Version: 0.8.0
Summary: Compatibility redirect — the SDK was renamed to `tracebloc`. This package re-points to it.
Author-email: tracebloc <lukas@tracebloc.io>
License-Expression: MIT
Project-URL: Homepage, https://github.com/tracebloc/tracebloc-py-package
Project-URL: Documentation, https://pypi.org/project/tracebloc/
Requires-Python: <3.13,>=3.9
Description-Content-Type: text/markdown
License-File: license.txt
Requires-Dist: tracebloc>=0.8.0
Provides-Extra: pytorch
Requires-Dist: tracebloc[pytorch]>=0.8.0; extra == "pytorch"
Provides-Extra: tensorflow
Requires-Dist: tracebloc[tensorflow]>=0.8.0; extra == "tensorflow"
Provides-Extra: sklearn
Requires-Dist: tracebloc[sklearn]>=0.8.0; extra == "sklearn"
Provides-Extra: huggingface
Requires-Dist: tracebloc[huggingface]>=0.8.0; extra == "huggingface"
Provides-Extra: boosting
Requires-Dist: tracebloc[boosting]>=0.8.0; extra == "boosting"
Provides-Extra: survival
Requires-Dist: tracebloc[survival]>=0.8.0; extra == "survival"
Provides-Extra: all
Requires-Dist: tracebloc[all]>=0.8.0; extra == "all"
Dynamic: license-file

# tracebloc_package — compatibility redirect

> **The SDK was renamed.** This distribution exists only to migrate
> users who still type `pip install tracebloc_package`. The actual
> package is now [`tracebloc`](https://pypi.org/project/tracebloc/).

## What this is

`tracebloc_package==0.8.0` is a **metadata-only** wheel. Installing it
pulls in `tracebloc>=0.8.0` as a dependency — that's where all the
code lives. The `tracebloc_package` import path keeps working via a
compatibility shim shipped inside the `tracebloc` distribution, with
a `DeprecationWarning` on first import.

## Migration

```bash
# Old (still works, redirects here)
pip install --upgrade tracebloc_package

# New (recommended)
pip install --upgrade tracebloc
```

```python
# Old (still works, emits DeprecationWarning)
from tracebloc_package import User

# New (recommended)
from tracebloc import User
```

The compatibility shim is removed in 1.0.0. Update your imports
before then.

See the full migration guide at
<https://github.com/tracebloc/tracebloc-py-package/blob/develop/MIGRATION.md#migrating-to-080>.
