forked from dod-cyber-crime-center/rugosa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
46 lines (42 loc) · 1.26 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
[metadata]
name = rugosa
version = attr:rugosa.__version__
author = DC3
url = https://github.com/Defense-Cyber-Crime-Center/rugosa
description = The next generation of kordesii. This is a library for managing emulation and provides utilities for interfacing with decompiled malware samples using dragodis.
long_description_content_type = text/markdown
long_description = file:README.md
keywords = malware, ida, ghidra, emulation, strings
license = MIT
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
[options]
include_package_data = True
packages = find:
python_requires = >=3.8
install_requires =
dragodis>=0.8.0
click
hexdump
pyhidra>=0.3.0
yara-python
[options.entry_points]
pyhidra.setup =
rugosa = rugosa.ghidra_plugin.install:setup
pyhidra.pre_launch =
rugosa = rugosa.ghidra_plugin.install:pre_launch
[options.extras_require]
testing =
pytest>=3.0.0
[tool:pytest]
norecursedirs = docs build *.egg-info .git .nox .pytest_cache
testpaths = tests
addopts =
-p no:faulthandler
#log_cli = True
#log_cli_level = DEBUG
#log_cli_format = [%(levelname)8s] %(module)-15s : %(message)s