Metadata-Version: 2.4
Name: dbgpy
Version: 0.1.7
Summary: Python implementation of Rust's dbg! macro
License: MIT
License-File: LICENSE
Author: Marcel Rød
Author-email: marcelroed@gmail.com
Requires-Python: >=3.5
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: astunparse (>=1,<2) ; python_version < "3.9"
Requires-Dist: attrs (>=21.1,<22.0)
Project-URL: Repository, https://github.com/marcelroed/dbgpy
Description-Content-Type: text/markdown

# dbgpy

Debug print inspired by Rust's `dbg!` macro.

Example:

```python
from dbgpy import dbg
import numpy as np

arr = np.linspace(0, 10)

dbg(arr.shape)
```

Outputs
```
main.py:6: arr.shape = (50,)
```


