-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for angr management (#25)
* Add support for angr management * Fix versioning * Fix readme
- Loading branch information
Showing
11 changed files
with
73 additions
and
50 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[meta] | ||
plugin_metadata_version = 0 | ||
|
||
[plugin] | ||
name = "DAILA_plugin" | ||
shortname = "DAILA_plugin" | ||
version = "0.0.0" | ||
description = "" | ||
long_description = "The Decompiler Artificial Intelligence Assistant (DAILA)." | ||
platforms = ["windows", "linux", "macos"] | ||
min_angr_version = "9.0.0.0" | ||
author = "mahaloz" | ||
entrypoints = ["daila_plugin.py"] |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[metadata] | ||
name = dailalib | ||
version = attr: dailalib.__version__ | ||
url = https://github.com/mahaloz/DAILA | ||
classifiers = | ||
License :: OSI Approved :: BSD License | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.6 | ||
license = BSD 2 Clause | ||
license_files = LICENSE | ||
description = The Decompiler Artificial Intelligence Language Assistant (DAILA) is a tool for adding AI to decompilers. | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
|
||
[options] | ||
install_requires = | ||
openai>=1.0.0 | ||
libbs>=0.9.0 | ||
tiktoken | ||
varbert>=2.0.5 | ||
|
||
python_requires = >= 3.6 | ||
include_package_data = True | ||
packages = find: | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
daila = dailalib.__main__:main |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from setuptools import setup | ||
|
||
setup() |