Metadata-Version: 2.4
Name: tracezero
Version: 0.1.16
Summary: Alias for trace0, the low-overhead tracing profiler for Python.
Author: Soof Golan
Author-email: Soof Golan <hi@soofgolan.com>
License-Expression: MIT
Requires-Dist: trace0==0.1.16
Requires-Dist: trace0[otel]==0.1.16 ; extra == 'otel'
Requires-Dist: trace0[sentry]==0.1.16 ; extra == 'sentry'
Requires-Python: >=3.13
Project-URL: Homepage, https://github.com/soof-golan/trace0
Project-URL: Repository, https://github.com/soof-golan/trace0
Provides-Extra: otel
Provides-Extra: sentry
Description-Content-Type: text/markdown

# tracezero

`tracezero` is [trace0](https://pypi.org/project/trace0/) under its longer
name. Installing it installs `trace0` at the matching version and offers the
same API and CLI:

```bash
uvx tracezero run --output trace.pb your_script.py
```

```python
from tracezero import Tracer

with Tracer("trace.pb"):
    your_workload()
```

Everything else — documentation, issues, source — lives at
<https://github.com/soof-golan/trace0>.
