-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
64 lines (54 loc) · 1.37 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[metadata]
name = viper2
version = attr: viper2.common.version.VIPER_VERSION
author = Claudio Guarnieri
author_email = nex@nex.sx
description = Viper Framework
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/viper-framework/viper
keywords = security, binary, malware
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Information Technology
Operating System :: OS Independent
Programming Language :: Python
[options]
packages = find:
package_dir = = ./
include_package_data = True
python_requires = >= 3.10
install_requires =
prompt-toolkit >=3.0.38
rich >=13.3.5
python-magic >=0.4.27
pipreqs >=0.4.13
peewee >=3.16.2
platformdirs >=3.5.1
[options.packages.find]
where = ./
[options.entry_points]
console_scripts =
viper2 = viper2.ui:main
[pylint]
score = no
reports = no
output-format = colorized
max-locals = 25
max-args = 10
good-names = db
min-similarity-lines = 10
ignore-comments = yes
ignore-docstrings = yes
ignore-imports = yes
ignored-argument-names=args|kwargs
# https://pylint.pycqa.org/en/stable/technical_reference/features.html
disable =
#logging-fstring-interpolation,
missing-docstring,
missing-module-docstring,
missing-class-docstring,
missing-function-docstring,
[mypy]
disable_error_code = attr-defined