generated from clearbluejar/ghidra-python-vscode-devcontainer-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move get_parser, bump ver, add testing in setup.cfg
- Loading branch information
1 parent
ef72f91
commit 6f3f98c
Showing
3 changed files
with
33 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
__version__ = '0.3.0' | ||
__version__ = '0.4.0' | ||
__author__ = 'clearbluejar' | ||
|
||
# Expose API | ||
from .ghidra_diff_engine import GhidraDiffEngine | ||
from .version_tracking_diff import VersionTrackingDiff | ||
from .simple_diff import SimpleDiff | ||
from .structural_graph_diff import StructualGraphDiff | ||
from .__main__ import get_parser, get_engine_classes | ||
|
||
__all__ = [ | ||
"GhidraDiffEngine", "SimpleDiff", "StructualGraphDiff", "VersionTrackingDiff" | ||
"GhidraDiffEngine", "SimpleDiff", "StructualGraphDiff", "VersionTrackingDiff", "get_parser", "get_engine_classes" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,14 @@ name = ghidriff | |
author = clearbluejar | ||
author_email = [email protected] | ||
version = attr:ghidriff.__version__ | ||
description = A binary diffing engine leveraging Ghidra and its FlatProgramAPI | ||
description = Ghidra Binary Diffing Engine | ||
long_description_content_type = text/markdown | ||
long_description = file:README.md | ||
license = GPL-3.0 license | ||
license_files = | ||
LICENSE | ||
url = https://github.com/clearbluejar/ghidriff | ||
keywords = patchdiff, binaries, bindiff, ghidra | ||
keywords = patchdiff, binaries, bindiff, ghidra, ghidriff | ||
platform = any | ||
classifiers = | ||
Development Status :: 3 - Alpha | ||
|
@@ -35,7 +35,19 @@ install_requires = | |
console_scripts = | ||
ghidriff = ghidriff.__main__:main | ||
|
||
[options.extras_require] | ||
testing = | ||
pytest | ||
requests | ||
pytest-datadir | ||
|
||
[tool:pytest] | ||
testpaths = tests | ||
required_plugins = | ||
pytest-datadir | ||
|
||
addopts = | ||
-p no:faulthandler | ||
-p no:faulthandler | ||
|
||
[pycodestyle] | ||
max_line_length = 130 |