32 lines
638 B
Plaintext
32 lines
638 B
Plaintext
Metadata-Version: 2.1
|
|
Name: ghidra_assistant
|
|
Version: 0.0.1
|
|
Summary: Package to assist ghidra
|
|
Author-email: Eljakim Herrewijnen <e.herrewijnen@gmail.com>
|
|
Classifier: Programming Language :: Python :: 3
|
|
Classifier: Operating System :: OS Independent, Linux preferred
|
|
Requires-Python: >=3.8
|
|
Description-Content-Type: text/markdown
|
|
|
|
# Ghidra Assistant
|
|
Contains lots of bugs!
|
|
|
|
## Setup
|
|
```bash
|
|
pip install build
|
|
```
|
|
|
|
## Building
|
|
To build the GA
|
|
```bash
|
|
pip install build
|
|
python3 -m build
|
|
```
|
|
|
|
Next you can install the GA into your venv by:
|
|
|
|
```
|
|
source venv/bin/activate
|
|
python3 -m pip install dist/ghidra_assistant-0.0.1-py3-none-any.whl
|
|
```
|