Metadata-Version: 2.1
Name: gdbundle-gdb-dashboard
Version: 0.11.4.post1
Summary: gdbundle plugin for cyrus-and/gdb-dashboard
License: MIT
Author: Tyler Hoffman
Author-email: tyler@memfault.com
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: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Debuggers
Classifier: Topic :: Software Development :: Embedded Systems
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: gdbundle (>=0.0.3,<0.1.0)
Description-Content-Type: text/markdown

# gdbundle-gdb-dashboard

This is a [gdbundle](https://github.com/memfault/gdbundle) plugin for [cyrus-and/gdb-dashboard](https://github.com/cyrus-and/gdb-dashboard)

## Compatibility

- GDB

## Installation

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

```
$ pip install gdbundle-gdb-dashboard
```

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 = ["gdb-dashboard"]
gdbundle.init(include=plugins)
```

## Building

To build this package, it requires calling `make` first as we need to download the `.gdbinit` file from the actual repository since it isn't packaged as a Python package.

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

