forked from Kazhuu/asm2cfg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
44 lines (39 loc) · 1.15 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
[metadata]
name = asm2cfg
version = 0.2.2
author = Mauri Mustonen
author_email = [email protected]
description = Python command-line tool and GDB extension to view and save x86, ARM and objdump assembly files as control-flow graph (CFG) pdf files.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/Kazhuu/asm2cfg
project_urls =
Bug Tracker = https://github.com/Kazhuu/asm2cfg/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
package_dir =
= src
packages = find:
python_requires = >=3.6
install_requires =
graphviz >= 0.16
scripts = src/gdb_asm2cfg.py
[options.entry_points]
console_scripts =
asm2cfg = asm2cfg.command_line:main
[options.packages.find]
where = src
[flake8]
max-line-length = 120
exclude = build
[pylint.]
max-line-length = 120
check-quote-consistency = yes
logging-format-style = new
expected-line-ending-format = LF
include-naming-hint = yes
ignored-modules = gdb # Ignore because of the GDB integration
disable=duplicate-code,too-many-instance-attributes,too-many-arguments