mvt/setup.cfg

57 lines
1.2 KiB
INI

[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:
package_dir = = ./
include_package_data = True
python_requires = >= 3.8
install_requires =
click >=8.0.3
rich >=10.12.0
tld >=0.12.6
tqdm >=4.62.3
requests >=2.26.0
simplejson >=3.17.5
packaging >=21.0
appdirs >=1.4.4
iOSbackup >=0.9.921
adb-shell >=0.4.2
libusb1 >=2.0.1
cryptography >=36.0.1
pymobiledevice3 >= 1.23.9
pyyaml >=6.0
[options.packages.find]
where = ./
[options.entry_points]
console_scripts =
mvt-ios = mvt.ios:cli
mvt-android = mvt.android:cli
[flake8]
max-complexit = 10
max-line-length = 1000
ignore =
C901,
E265,
F401,
E127,
W503,
E226