generated from clearbluejar/ghidra-python-vscode-devcontainer-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.cfg
50 lines (45 loc) · 1.2 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[metadata]
name = ghidrecomp
author = clearbluejar
author_email = [email protected]
version = attr:ghidrecomp.__version__
description = Python Command-Line Ghidra Decomplier
long_description_content_type = text/markdown
long_description = file:README.md
license = GPL-3.0 license
license_files =
LICENSE
url = https://github.com/clearbluejar/ghidrecomp
keywords = ghidra, decompiler, callgraph, bsim
platform = any
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
[options]
python_requires = >= 3.9
packages = find:
zip_safe = False
include_package_data = True
install_requires =
pyhidra>=1.0.0
[options.entry_points]
console_scripts =
ghidrecomp = ghidrecomp.__main__:main
[options.extras_require]
testing =
pytest
pytest-datadir
[tool:pytest]
testpaths = tests
required_plugins =
pytest-datadir
addopts =
-p no:faulthandler
[pycodestyle]
max_line_length = 130