mvt/setup.cfg

55 lines
1.1 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
rich >=12.4.4
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
iOSbackup >=0.9.921
2022-07-07 10:28:42 +00:00
adb-shell >=0.4.3
libusb1 >=3.0.0
cryptography >=37.0.4
pyyaml >=6.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
[flake8]
max-complexit = 10
max-line-length = 1000
ignore =
C901,
E265,
F401,
E127,
2022-05-08 12:50:31 +00:00
W503,
E226