Metadata-Version: 2.4
Name: pdbcolor
Version: 0.2.1
Summary: A simple package to add code highlighting to the python debugger (PDB).
Project-URL: Homepage, https://github.com/Alex-JG3/pdbcolor
Project-URL: Issues, https://github.com/Alex-JG3/pdbcolor/issues
Author: Alex Gregory
License-Expression: MIT
License-File: LICENSE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Requires-Dist: pygments
Provides-Extra: dev
Requires-Dist: ruff; extra == 'dev'
Description-Content-Type: text/markdown

# PDB Color

Add some color to the python debugger.

## Installation and Setup

Can be installed with `pip`.

```
pip install pdbcolor
```

Once installed, set the environment variable `PYTHONBREAKPOINT` to
`pdbcolor.set_trace`. This can be done with the `export` command with a POSIX
compliant shell.

```
export PYTHONBREAKPOINT=pdbcolor.set_trace
```

`pdbcolor` can be used temporarily by adding the
`PYTHONBREAKPOINT=pdbcolor.set_trace` prefix before running a python script.
For example:

```
PYTHONBREAKPOINT=pdbcolor.set_trace python3 main.py
```
