mvt/setup.cfg

97 lines
1.9 KiB
INI
Raw Normal View History

[metadata]
name = mvt
version = attr: mvt.common.version.MVT_VERSION
author = Claudio Guarnieri
author_email = nex@nex.sx
description = Mobile Verification Toolkit
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/mvt-project/mvt
keywords = security, mobile, forensics, malware
license = MVT v1.1
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Information Technology
Operating System :: OS Independent
Programming Language :: Python
[options]
packages = find:
2022-05-08 15:06:34 +00:00
package_dir = = ./
include_package_data = True
python_requires = >= 3.8
2022-05-08 13:07:17 +00:00
install_requires =
2022-07-07 10:28:42 +00:00
click >=8.1.3
2022-10-15 09:26:40 +00:00
rich >=12.6.0
2022-05-08 13:07:17 +00:00
tld >=0.12.6
2022-07-07 10:28:42 +00:00
requests >=2.28.1
simplejson >=3.17.6
packaging >=21.3
2022-05-08 13:07:17 +00:00
appdirs >=1.4.4
2022-10-15 09:26:40 +00:00
iOSbackup >=0.9.923
2022-07-07 10:28:42 +00:00
adb-shell >=0.4.3
libusb1 >=3.0.0
2024-04-15 20:41:01 +00:00
cryptography >=42.0.5
pyyaml >=6.0
pyahocorasick >= 2.0.0
[options.packages.find]
2022-05-08 15:06:34 +00:00
where = ./
[options.entry_points]
console_scripts =
mvt-ios = mvt.ios:cli
2022-05-08 12:50:31 +00:00
mvt-android = mvt.android:cli
[options.package_data]
mvt = ios/data/*.json
2022-05-08 12:50:31 +00:00
[flake8]
2022-08-12 14:20:16 +00:00
max-complexity = 10
2022-05-08 12:50:31 +00:00
max-line-length = 1000
ignore =
C901,
E265,
F401,
E127,
2022-05-08 12:50:31 +00:00
W503,
2023-06-13 23:05:14 +00:00
E226,
E203
2022-08-12 14:20:16 +00:00
[pylint]
score = no
reports = no
output-format = colorized
max-locals = 25
max-args = 10
2022-08-13 12:04:10 +00:00
good-names = i,m
2022-08-12 14:20:16 +00:00
min-similarity-lines = 10
ignore-comments = yes
ignore-docstrings = yes
ignore-imports = yes
2022-08-12 14:20:16 +00:00
ignored-argument-names=args|kwargs
# https://pylint.pycqa.org/en/stable/technical_reference/features.html
disable =
too-many-instance-attributes,
broad-except,
abstract-method,
dangerous-default-value,
too-few-public-methods,
missing-docstring,
missing-module-docstring,
missing-class-docstring,
missing-function-docstring,
#duplicate-code,
#line-too-long,
2023-02-21 20:18:36 +00:00
[mypy]
ignore_missing_imports = True
2023-06-13 23:05:14 +00:00
[isort]
profile=black