Metadata-Version: 2.1
Name: gdbundle-voltron
Version: 0.1.7.post2
Summary: gdbundle plugin for snare/voltron
License: MIT
Author: Tyler Hoffman
Author-email: tyler@memfault.com
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.7.*, !=3.8.*
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Plugins
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Debuggers
Classifier: Topic :: Software Development :: Embedded Systems
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: voltron (==0.1.7)
Description-Content-Type: text/markdown

# gdbundle-voltron

This is a [gdbundle](https://github.com/memfault/gdbundle) plugin for [snare/voltron](https://github.com/snare/voltron)

## Compatibility

This works for GDB, but it appears that the LLDB version of Voltron (as of [bcf25d957657414d025ff488889cdef8d4fcae06](https://github.com/snare/voltron/commit/bcf25d957657414d025ff488889cdef8d4fcae06)) does not work due not pinning versions in it's `setup.py` and does not work on Python 3.7. 

```
ImportError: cannot import name 'DispatcherMiddleware' from 'werkzeug.wsgi'
```

## Installation

After setting up [gdbundle](https://github.com/memfault/gdbundle), install the package from PyPi. 

```
$ pip install gdbundle-voltron
```

If you've decided to manually manage your packages using the `gdbundle(include=[])` argument,
add it to the list of plugins.

```
# .gdbinit

[...]
import gdbundle
plugins = ["voltron"]
gdbundle.init(include=plugins)
```

## Building

```
$ poetry build
$ poetry publish
```

